0

如何绑定到内容控件的内容属性?
我创建了自定义控件:

      public class CustomControl 
        {
         // Dependency Properties
public int MyProperty
        {
            get { return (int)GetValue(MyPropertyProperty); }
            set { SetValue(MyPropertyProperty, value); }
        }

        // Using a DependencyProperty as the backing store for MyProperty.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty MyPropertyProperty =
            DependencyProperty.Register("MyProperty", typeof(int), typeof(MainViewModel), new PropertyMetadata(0));
         }

在 ViewModel 中,我创建了此自定义控件类型的属性:

    public CustomControl CustomControl { get; set; }

在视图中,我将此属性绑定到内容控件:

     <ContentControl x:Name="Custom" Content="{Binding CustomControl}"></ContentControl>

现在如何绑定到内容控件的内容属性?

4

1 回答 1

0
<ContentControl Content="{Binding ElementName=Custom, Path=Content}" />

我不确定这会产生什么影响。我怀疑它会抱怨 UI 元素已经有一个父元素或类似的东西。

更新

如果我认为我正确理解了您的问题,我认为您无法使用绑定做您想做的事。这是一种替代方法,它在内容更改时添加回调,以便您可以将新内容设置为 VM 的属性:

class CustomControl : Control
{
    static CustomControl()
    {
        ContentControl.ContentProperty.OverrideMetadata(typeof(CustomControl), new PropertyMetadata(null, UpdateViewModel));
    }

    private static void UpdateViewModel(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var control = d as CustomControl;
        var viewModel = control.DataContext as MyViewModel;
        viewModel.CustomControl = control;
    }
}

您可能需要在那里进行一些错误处理。

于 2013-03-04T16:52:29.817 回答