| 12345678910111213141516171819202122232425262728 |
- using System;
- using Avalonia.Logging;
- using Avalonia.Styling;
- namespace Avalonia.Controls
- {
- [Obsolete("Use ComboBox")]
- public class DropDown : ComboBox, IStyleable
- {
- public DropDown()
- {
- Logger.TryGet(LogEventLevel.Warning)?.Log(LogArea.Control, this, "DropDown is deprecated: Use ComboBox");
- }
- Type IStyleable.StyleKey => typeof(ComboBox);
- }
- [Obsolete("Use ComboBoxItem")]
- public class DropDownItem : ComboBoxItem, IStyleable
- {
- public DropDownItem()
- {
- Logger.TryGet(LogEventLevel.Warning)?.Log(LogArea.Control, this, "DropDownItem is deprecated: Use ComboBoxItem");
- }
- Type IStyleable.StyleKey => typeof(ComboBoxItem);
- }
- }
|