我试图更好地理解什么是依赖属性,什么不是。我已经构建了下面的示例,它使组合框的选择可以根据用户移动滑块的方式进行更改。
在创建它时,我了解到依赖属性实际上与 ViewModel 属性中使用的INotifyPropertyChanged无关,这简化了下面的示例。
但是现在我将如何从下面的示例中重新创建中看到的那种依赖属性DockPanel.Dock="Top"
,例如,我可以启用以下类型的 XAML 使用:
<local:ExtendedComboBox
Margin="5 5 5 0"
DataIdCode="{Binding ElementName=TheSource, Path=Value}">
<Image local:ExtendendedComboBox="Left" ... />
<TextBlock local:ExtendendedComboBox="Right" ... />
</local:ExtendedComboBox>
这可能吗?这是否与下面更直接的示例中使用的依赖属性相同,还是像 INotifyPropertyChanged 一样,是 WPF 中的另一种绑定技术?
这是滑块/组合框示例:
XAML:
<Window x:Class="TestDependency9202.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestDependency9202"
Title="Window1" Height="300" Width="300">
<StackPanel>
<StackPanel
Margin="5 5 5 0"
Orientation="Horizontal">
<TextBlock Text="Customers"
Margin="0 0 3 0"/>
<Slider x:Name="TheSource"
HorizontalAlignment="Left"
Value="0"
Width="50"
SnapsToDevicePixels="True"
Minimum="0"
Margin="0 0 3 0"
Maximum="1"/>
<TextBlock Text="Employees"/>
</StackPanel>
<local:ExtendedComboBox
Margin="5 5 5 0"
DataIdCode="{Binding ElementName=TheSource, Path=Value}"/>
</StackPanel>
</Window>
代码隐藏:
using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
namespace TestDependency9202
{
public partial class ExtendedComboBox : ComboBox
{
public static readonly DependencyProperty DataIdCodeProperty =
DependencyProperty.Register("DataIdCode", typeof(string), typeof(ExtendedComboBox),
new PropertyMetadata(string.Empty, OnDataIdCodePropertyChanged));
private static void OnDataIdCodePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
ExtendedComboBox extendedComboBox = dependencyObject as ExtendedComboBox;
extendedComboBox.OnDataIdCodePropertyChanged2(e);
}
private void OnDataIdCodePropertyChanged2(DependencyPropertyChangedEventArgs e)
{
if (DataIdCode == "0")
{
Items.Clear();
Items.Add("customer1");
Items.Add("customer2");
Items.Add("customer3");
}
else if (DataIdCode == "1")
{
Items.Clear();
Items.Add("employee1");
Items.Add("employee2");
Items.Add("employee3");
}
this.SelectedIndex = 0;
}
public string DataIdCode
{
get { return GetValue(DataIdCodeProperty).ToString(); }
set { SetValue(DataIdCodeProperty, value); }
}
public ExtendedComboBox()
{
InitializeComponent();
}
}
}