我正在尝试为名为“ IsVisibleWhenReadOnly
”的按钮创建一个布尔属性。我希望将其用于 StackPanel 中的按钮,因此它们是否可见取决于数据是否处于ReadOnly
状态。即当处于ReadOnly
状态时,保存和取消按钮是隐藏的,但编辑按钮是可见的。单击 Edit 按钮时,ReadOnly
状态变为 false,Cancel 和 Save 按钮变为可见,Edit 按钮变为隐藏。
我的房产代码:
public bool IsVisibleWhenReadOnly
{
get { return (bool)GetValue(IsVisibleWhenReadOnlyProperty); }
set { SetValue(IsVisibleWhenReadOnlyProperty, value); }
}
// Using a DependencyProperty as the backing store for IsVisibleWhenReadOnly.
public static readonly DependencyProperty IsVisibleWhenReadOnlyProperty =
DependencyProperty.Register("IsVisibleWhenReadOnly",
typeof(bool),
typeof(Button),
new PropertyMetadata(true));
按钮样式:
<Style TargetType="{x:Type Button}">
<Setter Property="Visibility">
<Setter.Value>
<Binding Path="IsVisibleWhenReadOnly" RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType=Window}" Mode="OneWay">
<Binding.Converter>
<utils:BoolToVisibilityConverter/>
</Binding.Converter>
</Binding>
</Setter.Value>
</Setter>
</Style>
和按钮代码:
<Button Name="btnEdit" Content="Edit" MinWidth="75" Height="25"
Click="btnEdit_Click" IsVisibleWhenReadOnly="true" />
IsReadOnly
是另一个工作愉快的依赖属性,并根据其值启用/禁用控件,但我希望这会影响可见性,而不是启用。
不幸的是,我在编译时遇到三个错误:
The member "IsVisibleWhenReadOnly" is not recognized or is not accessible.
The property 'IsVisibleWhenReadOnly' does not exist in XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'.
The property 'IsVisibleWhenReadOnly' was not found in type 'Button'.
我猜它typeOf(Button),
在行中,但是将其更改为“BaseWindow”(这是typeOf()
我的“IsReadOnly”属性的值)并没有什么不同。我也很确定我的 BoolToVisibilityConverter 不是问题。
谁能看到我做错了什么并指出我正确的方向?
编辑:如果可能的话,我想将依赖属性与按钮一起使用。例如,StackPanels、CheckBoxes 等,因此不限于按钮的解决方案是理想的。