Browse Source

Re-added an obsolete DropDown control.

To provide backwards compatibility for the moment.
pull/2393/head
Steven Kirk 7 years ago
parent
commit
18f2e4e6be
  1. 28
      src/Avalonia.Controls/DropDown.cs

28
src/Avalonia.Controls/DropDown.cs

@ -0,0 +1,28 @@
using System;
using Avalonia.Logging;
using Avalonia.Styling;
namespace Avalonia.Controls
{
[Obsolete("Use ComboBox")]
public class DropDown : ComboBox, IStyleable
{
public DropDown()
{
Logger.Warning(LogArea.Control, this, "DropDown is deprecated: Use ComboBox");
}
Type IStyleable.StyleKey => typeof(ComboBox);
}
[Obsolete("Use ComboBoxItem")]
public class DropDownItem : ComboBoxItem, IStyleable
{
public DropDownItem()
{
Logger.Warning(LogArea.Control, this, "DropDownItem is deprecated: Use ComboBoxItem");
}
Type IStyleable.StyleKey => typeof(ComboBoxItem);
}
}
Loading…
Cancel
Save