ComboBox
ToggleButton
和MainWindow
SelectedIndex
分别在IsChecked
和<ToggleButton x:Name="tbSortDirection" Width="25" IsChecked="{Binding Path=SortDirection,Converter={StaticResource LDB},Mode=TwoWay,ElementName=mwa,UpdateSourceTrigger=PropertyChanged}">
<ed:RegularPolygon Fill="#FF080808" Height="5" UseLayoutRounding="True" Margin="-2,0,0,0" PointCount="3" Width="6"/>
</ToggleButton>
<ComboBox x:Name="cbSort" Width="100" VerticalAlignment="Stretch" Margin="-5,0,0,0" SelectedIndex="{Binding SelSortIndex,Mode=TwoWay,ElementName=mwa,UpdateSourceTrigger=PropertyChanged}" IsSynchronizedWithCurrentItem="True" >
<ComboBoxItem Content="a"/>
<ComboBoxItem Content="b"/>
<ComboBoxItem Content="v"/>
<ComboBoxItem Content="f"/>
</ComboBox>
属性上有双向绑定。它们绑定的属性是DependencyProperties(DP),我在setter上有一个断点,但调试器永远不会停止。我应该注意,绑定应该可以作为DP上的初始化器工作,转换器也可以工作。 VS的输出窗口也没什么值得关注的。
public ListSortDirection SortDirection
{
get { return (ListSortDirection)GetValue(SortDirectionProperty); }
set // BreakPoint here
{
MessageBox.Show("");
SetValue(SortDirectionProperty, value);
UpdateSort();
}
}
public static readonly DependencyProperty SortDirectionProperty =
DependencyProperty.Register("SortDirection", typeof(ListSortDirection), typeof(MainWindow), new PropertyMetadata(ListSortDirection.Ascending));
public int SelSortIndex
{
get { return (int)GetValue(SelSortIndexProperty); }
set // BreakPoint here
{
MessageBox.Show("");
SetValue(SelSortIndexProperty, value);
UpdateSort();
}
}
public static readonly DependencyProperty SelSortIndexProperty =
DependencyProperty.Register("SelSortIndex", typeof(int), typeof(MainWindow), new PropertyMetadata(1));
{{1}}
答案 0 :(得分:0)
你真的打电话给安装人员吗?
例如,说
SortDirection = someOtherSortDirection;
会进入你的二传手,但是
SortDirection.SomeProperty = something;
实际上是通过你的吸气剂。
在你的getter中设置一个断点,当你认为你的setter应该被调用时,我不会感到惊讶。
答案 1 :(得分:0)
它不会中断,因为WPF会直接在GetValue
上调用SetValue
和DependencyProperty
。如果您想在属性更改时执行某些操作,则需要为属性更改时定义回调:
public static readonly DependencyProperty SortDirectionProperty =
DependencyProperty.Register("SortDirection",
typeof(ListSortDirection),
typeof(MainWindow),
new PropertyMetadata(ListSortDirection.Ascending, SortDirectionPropertyChangedCallback));
private static void SortDirectionPropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
(d as MainWindow).SortDirectionPropertyChangedCallback(e);
}
private void SortDirectionPropertyChangedCallback(DependencyPropertyChangedEventArgs e)
{
UpdateSort();
}
public ListSortDirection SortDirection
{
get { return (ListSortDirection)GetValue(SortDirectionProperty); }
set { SetValue(SortDirectionProperty, value); }
}