diff --git a/demo/Ursa.Demo/Pages/MultiComboBoxDemo.axaml b/demo/Ursa.Demo/Pages/MultiComboBoxDemo.axaml index 6dc9a66..6687870 100644 --- a/demo/Ursa.Demo/Pages/MultiComboBoxDemo.axaml +++ b/demo/Ursa.Demo/Pages/MultiComboBoxDemo.axaml @@ -14,7 +14,7 @@ + Text="{TemplateBinding Watermark}" /> SetValue(SelectedItemTemplateProperty, value); } - public static readonly StyledProperty PlaceholderTextProperty = - ComboBox.PlaceholderTextProperty.AddOwner(); + public static readonly StyledProperty WatermarkProperty = + TextBox.WatermarkProperty.AddOwner(); - public string? PlaceholderText + public string? Watermark { - get => GetValue(PlaceholderTextProperty); - set => SetValue(PlaceholderTextProperty, value); + get => GetValue(WatermarkProperty); + set => SetValue(WatermarkProperty, value); } static MultiComboBox()