English 中文(简体)
如何通过确定集装箱控制附属财产来修改内部控制财产?
原标题:How to modify inner control property by setting container control dependency property?

我在WPF内部建立一个控制器, 这个控制器在标签内, 我创建了一个附属财产, 以便修改标签的可见度属性 。

我的问题是,我找不到办法 改变标签的可见度 财产,同时我的附属财产 被分配。

我的代码如下:

public static readonly DependencyProperty captionVisibleProperty = DependencyProperty.Register(
                                                                            "CaptionVisible",
                                                                            typeof(bool),
                                                                            typeof(MyCustomControl));

    public bool CaptionVisible
    {
        get
        {
            return (bool)GetValue(captionVisibleProperty);
        }
        set
        {
            SetValue(captionVisibleProperty, value);
            ShowCaption();
        }
    }

    private void ShowCaption()
    {
        if (CaptionVisible)
        {
            captionLabel.Visibility = System.Windows.Visibility.Visible;
        }
        else
        {
            captionLabel.Visibility = System.Windows.Visibility.Collapsed;
        }
    }

正如你们所看到的,当我的财产被设定时,我试图称我的“表演能力”方法为“显示能力”方法,但是没有发生任何情况。

那么,我该做什么才能完成?

希望有人能帮我 提前谢谢你

最佳回答

我找到了解决这个问题的办法:

如果您需要将嵌套的受抚养人控制财产与集装箱的受抚养人控制财产联系起来,您可以这样做:

     public static readonly DependencyProperty captionLabelVisibilityProperty = DependencyProperty.Register(
                                                                                    "CaptionVisibility",
                                                                                    typeof(Visibility),
                                                                                    typeof(MyContainerControl),
                                                                                    new FrameworkPropertyMetadata(
                                                                                        VisibilityPropertyChangedCallback));

    public Visibility CaptionVisibility
    {
        get
        { return (Visibility)GetValue(captionLabelVisibilityProperty); }

        set
        { SetValue(captionLabelVisibilityProperty, value); }
    }

    private static void VisibilityPropertyChangedCallback(DependencyObject controlInstance, DependencyPropertyChangedEventArgs args)
    {
        MyContainerControl myContainerControlInstance = (MyContainerControl)controlInstance;
        myContainerControlInstance.myLabel.Visibility = (Visibility)args.NewValue;
    }
问题回答

showCaption () () < dd419663. rel=" nofollow" > > > > > Model-View-ViewModel 设计模式。 这意味着将控制您的用户界面(视图)的逻辑设置在不同的视图模式类中, 然后将视图模式配置到此查看 DataContext 属性 。

这将让绑定容易得多。 引用属于用户界面元素的属性有时在 WPF 中可能有点麻烦。 根据合同, WPF 绑定系统是专门设计的, 目的是让用户界面元素 < code> DataContext 的内容容易获取 。

您还需要使用方便的 < code > Boolean To Visibility Converter 使该约束性工作生效,因为 visibility 属性类型 S s 类型不是 bool 。 我想将其放入窗口( 或控制 s) 资源词典, 以便于访问 :

<Window.Resources>
    <BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
</Window.Resources>


<Label Visibility="{Binding Path=CaptionVisible, 
                            Converter={StaticResource BooleanToVisibilityConverter}}"> 
    <!-- label content -->
</Label>

作为附加说明,除非可视性是约束性的 < em > 目标 < / em >,否则使其具有依赖性属性的属性是超杀的。在此约束中,它只是源代码,因此只要执行 < code> < Property Changed 即可:

class MyViewModel : INotifyPropertyChanged
{

    public event PropertyChangedEventHandler PropertyChanged;

    protected void RaisePropertyChanged(string propertyName)
    {
        var handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }

    private bool _captionVisible;
    public bool CaptionVisible
    {
        get { return _captionVisible; }
        set
        {
            if(_captionVisible != value)
            {
                _captionVisible = value;
                RaisePropertyChanged("CaptionVisible");
            }
        }
    }
}




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签