开发者

DependencyProperty ... can set, but can't get value out via binding

开发者 https://www.devze.com 2023-04-13 00:03 出处:网络
I have a Window, containing a UserControl \'TemplateEditor\'. The (shortened) TemplateEditor XAML is:

I have a Window, containing a UserControl 'TemplateEditor'. The (shortened) TemplateEditor XAML is:

<UserControl x:Class="xxx.Windows.Core.Controls.TemplateEditor"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             x:Name="userControl">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <TextBox Grid.Row="1" x:Name="textBox" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" />
    </Grid>
</UserControl>

I want to be able to bind data through the TemplateEditor into the TextBox "textBox". I'm using a DependencyProperty to mask the TextBox in the code-behind:

namespace xxx.Windows.Core.Controls
{
    public partial class TemplateEditor : UserControl 
    {
        public string Text
        {
            get 
            { 
                string s=(string)GetValue(TextProperty);
                return s;
            }
            set 
            {
                if (Text != value)
                { 
                    SetValue(TextProperty, value);
                }
            }
        }

        public static readonly DependencyProperty TextProperty =
            DependencyProperty.Register("Text", typeof(string), typeof(TemplateEditor),new PropertyMetadata(null,Text_PropertyChanged));

        public TemplateEditor()
   开发者_StackOverflow中文版     {
            InitializeComponent();
        }

        private static void Text_PropertyChanged(DependencyObject source, DependencyPropertyChangedEventArgs e)
        {
            ((TemplateEditor)source).textBox.Text = (string)e.NewValue;
        } 
    }
}

So from that you can see I have a DependencyProperty Text that I have a callback on to pick up changes made by to the binding (say, from the ViewModel) and apply to the TextBox value.

This works.

The problem is, I can't seem to have the binding work in reverse, ie. to get the value back out of the Text property (and therefore the TextBox) and back in to the binding consumer (the ViewModel). I've debugged calling GetValue(TextProperty) and this returns the correct value so the DP dictionary is correctly updating.

Given the following Binding in the parent Window's XAML:

<src:ApplicationWindowBase x:Class="xxx.Windows.Client.Filing"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:src="clr-namespace:xxx.Windows.Core;assembly=MIGTurbo1.Windows.Core"
        xmlns:viewmodel="clr-namespace:xxx.Windows.Client.ViewModel"
        xmlns:converters="clr-namespace:xxx.Windows.Client.Converters"
        xmlns:xxx_Windows_Core_Controls="clr-namespace:xxx.Windows.Core.Controls;assembly=xxx.Windows.Core" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
        mc:Ignorable="d" 
        Title="File Item(s)" Height="450" Width="550" ShowInTaskbar="False">
    <src:ApplicationWindowBase.Resources>
        <viewmodel:ViewModelLocator x:Key="ViewModelLocator" d:IsDataSource="True"/>
        <converters:FileableItemNameStringConverter x:Key="fileableItemNameStringConverter" />
        <converters:FileableItemTypeStringConverter x:Key="fileableItemTypeStringConverter" />
        <converters:FileableItemMetaDataStringConverter x:Key="fileableItemMetaDataStringConverter" />
        <converters:FileableItemIconConverter x:Key="fileableItemIconConverter" />
    </src:ApplicationWindowBase.Resources>
    <src:ApplicationWindowBase.DataContext>
        <Binding Mode="OneWay" Path="Filing" Source="{StaticResource ViewModelLocator}"/>
    </src:ApplicationWindowBase.DataContext>
    <Grid>
       <!-- SNIP -->
    <xxx_Windows_Core_Controls:TemplateEditor Grid.Column="1" Grid.Row="1" Margin="0" Text="{Binding Comment, Mode=TwoWay}" d:LayoutOverrides="Width, Height"/>
       <!-- SNIP -->
</src:ApplicationWindowBase>

I am using MVVM Light and the ViewModel does bind correctly. There are other control/field bindings (ommitted) that work fine. THe problem is that the Text property binding on the Comment ViewModel property is not working. I can set it fine (ie. set value in ViewModel, then bind) but the user-entered value in Text never goes into the ViewModel Comments property.

What am I doing wrong?


Try this:

<TextBox Text="{Binding ElementName=userControl,Path=Text,Mode=TwoWay}" />

and remove handlers.


Ok, typical StackOverflow usage pattern adopted.

I realised I am writing this one-way, have added a TextChanged event handler to update the dependency property.

public partial class TemplateEditor : UserControl 
{

    public string Text
    {
        get 
        { 
            string s=(string)GetValue(TextProperty);
            return s;
        }
        set 
        {
            if (Text != value)
            { 
                SetValue(TextProperty, value);
            }
        }
    }

    public static readonly DependencyProperty TextProperty =
        DependencyProperty.Register("Text", typeof(string), typeof(TemplateEditor),new PropertyMetadata(null,Text_PropertyChanged));

    public TemplateEditor()
    {
        InitializeComponent();

        textBox.TextChanged += new TextChangedEventHandler(textBox_TextChanged);
    }

    private static void Text_PropertyChanged(DependencyObject source, DependencyPropertyChangedEventArgs e)
    {
        ((TemplateEditor)source).textBox.Text = (string)e.NewValue;
    }


    void textBox_TextChanged(object sender, TextChangedEventArgs e)
    {
        Text = textBox.Text;
    }
}

Thanks for your time, and apologies. :)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号