关于属性更改的C#WPF更新文本框

时间:2015-07-19 17:40:32

标签: c# wpf binding

我在更新文本框中的文本时出现问题。我得到了这个MainWindow:

<Window x:Class="TestDatabinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
        <RowDefinition/>
    </Grid.RowDefinitions>
    <TextBox Grid.Row="0" Text="{Binding Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Margin="10,10,10,10"/>
    <Button Grid.Row="1" Content="Click me" Margin="10,10,10,10" Click="Button_Click"></Button>
    <Button Grid.Row="2" x:Name="a1" Content="ShowText" Margin="10,10,10,10" Click="a1_Click" ></Button>
</Grid>

现在,此MainWindow的cs文件如下所示:

using System.Windows;
namespace TestDatabinding
{
    public partial class MainWindow : Window
    {
        MainWindowViewModel mwvm;
        public MainWindow()
        {
            InitializeComponent();
            mwvm = new MainWindowViewModel();
            this.DataContext = mwvm;
        }
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            mwvm.ChangeText();
            this.DataContext = mwvm;
        }
        private void a1_Click(object sender, RoutedEventArgs e)
        {
            mwvm.showText();
        }
    }
}

最后但并非最不重要的是ViewModel类:

using System.ComponentModel;
using System.Windows;  
namespace TestDatabinding
{
    class MainWindowViewModel
    {
         public event PropertyChangedEventHandler PropertyChanged;
         private string text;
         public string Text
         {
            get { return this.text; }
            set 
            { 
                this.text = value;
                OnPropertyChanged("Text");
            }
        }
        protected void OnPropertyChanged(string name)
        {
             PropertyChangedEventHandler handler = PropertyChanged;
             if (handler != null)
             {
                  handler(this, new PropertyChangedEventArgs(name));
             }
        }
        public void ChangeText()
        {
            this.Text = "Hey paadddyy";
        }
        public void showText()
        {
            MessageBox.Show(Text);
        }
     }
}

我没有实现ICommands,因为这是一个简单的测试。 现在Button的工作正常,但Textbox Text没有得到更新。 有什么建议我可以做什么?我只想在点击第一个按钮时显示“Hey paadddyy”。在我按下第二个按钮然后第一个消息框显示“嘿paadddyy”但文本框文本没有得到更新:(

感谢您的每一个提示;)

2 个答案:

答案 0 :(得分:3)

您的MainWindowViewModel未实施INotifyPropertyChanged。它需要看起来像这样:

class MainWindowViewModel: INotifyPropertyChanged

您定义了事件但未实现接口

答案 1 :(得分:0)

需要实施 INotifyPropertyChanged

我建议如果你想对Notify Property做点什么。另一种简单的方法是将 Caliburn.Micro Framework 应用于您的项目。

Follow this link.