2

我正在尝试为名为“ 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 等,因此不限于按钮的解决方案是理想的。

4

2 回答 2

1

如果要捎带回现有控件,则应该使用附加的依赖属性。所以像:

public static void SetIsVisibleWhenReadOnly(UIElement element, bool value)
{
    element.SetValue(IsVisibleWhenReadOnlyProperty, value);
}
public static bool GetIsVisibleWhenReadOnly(UIElement element)
{
    return (bool)element.GetValue(IsVisibleWhenReadOnlyProperty);
}
// Using a Registerd DependencyProperty as the backing store for IsVisibleWhenReadOnly.
public static readonly DependencyProperty IsVisibleWhenReadOnlyProperty =
        DependencyProperty.RegisterAttached("IsVisibleWhenReadOnly",
                                     typeof(bool),
                                     typeof(Button),
                                     new PropertyMetadata(true));

我还会考虑对可见性转换器进行多重绑定,以便在确定要返回的 Visiblity 值时访问 IsReadOnly 和 IsVisibileWhenReadOnly。

于 2013-03-26T08:43:42.020 回答
1

您必须将您的注册DependancyProperty为一个AttachedProperty,如果您想在其他控件上使用它,请使用typeof(FrameworkElement)而不是typeof(Button)

 public static readonly DependencyProperty IsVisibleWhenReadOnlyProperty =
    DependencyProperty.RegisterAttached("IsVisibleWhenReadOnly"
     , typeof(bool), typeof(FrameworkElement),new PropertyMetadata(true));

但使用 a 可能是一个更简单的想法DataTrigger

例子:

<Button>
    <Style TargetType="{x:Type Button}">
        <Setter Property="Visibility" Value="Visible" />
        <Style.Triggers>
            <DataTrigger Binding="{Binding IsVisibleWhenReadOnly}" Value="True" >
                <Setter Property="Visibility" Value="Collapsed" />
            </DataTrigger>
        </Style.Triggers>
    </Style>
</Button>
于 2013-03-26T08:46:09.390 回答