1

基本的に TextBox を持つ Label である UserControl を作成したいと思います。今、私は別の値にバインドできるようにしたいと考えてTextBox.Textいます。

このために、UserControl に DependencyProperty を作成し、新しく作成した DependencyProperty に何かをバインドしようとしていますが、Text が更新されないようです。

私の UserControl1.xaml は次のようになります。

<UserControl x:Class="WpfApplication1.UserControl1"
         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" 
         d:DesignHeight="48" d:DesignWidth="200">
<Grid>
    <WrapPanel Height="48" HorizontalAlignment="Left" Name="wrapPanel1" VerticalAlignment="Top" Width="200">
        <Label Content="Label" Height="48" Name="label1" Width="100" />
        <TextBox Height="48" Name="textBox1" Width="100"  />
    </WrapPanel>
</Grid>

そして、私の UserControl1.xaml.cs は次のようになります。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Diagnostics;

namespace WpfApplication1
{


    /// <summary>
    /// Interaction logic for UserControl1.xaml
    /// </summary>
    public partial class UserControl1 : UserControl
    {
        private string value;
        public string Value
        {
            get { return value; }
            set
            {
                this.value = value;
                textBox1.Text = value;
                Trace.TraceInformation("value set in UserControl1");
            }
        }
        public static readonly DependencyProperty ValueProperty =
            DependencyProperty.Register("Value", typeof(string), typeof(UserControl1));
        public UserControl1()
        {
            InitializeComponent();
        }
    }
}

私は次のように UserControl を使用しています。

<my:UserControl1 x:Name="userControl11" Value="{Binding Path=Name}" />

DataContextName プロパティを持ち、このプロパティの INotifyPropertyChanged を実装するオブジェクトに設定します。

4

3 に答える 3

2

依存関係プロパティをラップするプロパティのgetまたはsetアクセサーにロジックやコードを追加することはできません。実行されません。

これは、WPF デザイナーが DependencyProperty を直接使用するコードを実際に生成するためです。get/set プロパティは、コードで使用する場合に便利です。DependencyProperty とプロパティの get/set で同じことを行う必要があるため、関連する依存関係プロパティを渡すときに、get/set アクセサーで GetValue と SetValue のみを呼び出す必要があります。

次のチュートリアルを参照してください。

依存関係プロパティ 依存関係プロパティの概要

于 2013-08-01T13:52:55.280 に答える
2

TextBox の Text と UserControl の Value の間の接続を間違った場所に置きます。CLR プロパティは便宜上使用されますが、Bind Engine では使用されません。次のように、TextBox のテキストを XAML またはコード ビハインドで明示的にユーザー コントロールの値にバインドする必要があります (ユーザー コントロールに root という名前を付けると仮定します)。

<TextBox x:Name="textBox1" Text="{Binding Path=Value, ElementName=root}"/>
于 2013-08-01T13:47:01.923 に答える