6

我想要一个文本框在我单击它时显示变量的值(1 到 100 的迭代),我不知道我在做什么错误:

当我运行项目时,文本框中不显示任何内容。

在文本框中显示变量的最佳方式是什么?

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;

namespace dataBindingTest
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        public string myText { get; set; }

        public void Button_Click_1(object sender, RoutedEventArgs e)
        {
            int i = 0;
            for (i = 0; i < 100; i++)
            {
                myText = i.ToString();
            }
        }
    }
}

XAML:

<Window x:Class="dataBindingTest.MainWindow"
        Name="windowElement"
        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>
        <Button Content="Button" HorizontalAlignment="Left" Height="106" Margin="71,95,0,0" VerticalAlignment="Top" Width="125" Click="Button_Click_1"/>
        <TextBlock x:Name="myTextBox" HorizontalAlignment="Left" Height="106" Margin="270,95,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="187" Text= "{Binding myText, ElementName=windowElement}" />

    </Grid>
</Window>
4

5 回答 5

11

您当前的myText属性无法在其值发生更改时通知 WPF 绑定系统,因此TextBlock不会更新。

如果您将其设置为依赖属性,它会自动实现更改通知,并且对属性的更改将反映在TextBlock.

因此,如果您public string myText { get; set; }用所有这些代码替换它应该可以工作:

public string myText
{
    get { return (string)GetValue(myTextProperty); }
    set { SetValue(myTextProperty, value); }
}

// Using a DependencyProperty as the backing store for myText.  This enables animation, styling, binding, etc...
public static readonly DependencyProperty myTextProperty =
    DependencyProperty.Register("myText", typeof(string), typeof(Window1), new PropertyMetadata(null));
于 2012-11-10T20:30:02.067 回答
8

实施INotifyPropertyChanged

public partial class MainWindow : Window, INotifyPropertyChanged
    {
        public MainWindow()
        {
            this.InitializeComponent();
        }

        private string _txt;
        public string txt
        {
            get
            {
                return _txt;
            }
            set
            {
                if (_txt != value)
                {
                    _txt = value;
                    OnPropertyChanged("txt");
                }
            }
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            txt = "changed text";
        }

        public event PropertyChangedEventHandler PropertyChanged;

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

XAML:

<TextBox Text="{Binding txt}"/>
<Button Click="Button_Click">yes</Button>

并且不要忘记添加窗口的 DataContext 属性:

<Window ... DataContext="{Binding RelativeSource={RelativeSource Self}}"/>
于 2012-11-12T01:19:04.890 回答
3

尝试这个:

 public partial class MainWindow : Window, INotifyPropertyChanged
    {
        public MainWindow()
        {
            InitializeComponent();
            this.DataContext = this;
        }

        public string myText { get; set; }

        public void Button_Click_1(object sender, RoutedEventArgs e)
        {
            BackgroundWorker bw = new BackgroundWorker();
            bw.DoWork += delegate
            {
                int i = 0;
                for (i = 0; i < 100; i++)
                {
                    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke((Action)(() => { myText = i.ToString(); OnPropertyChanged("myText"); }));                    
                    Thread.Sleep(100);
                }
            };

            bw.RunWorkerAsync();
        }

        public event PropertyChangedEventHandler PropertyChanged;

        protected void OnPropertyChanged(string name)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(name));
            }
        }
    }

XAML 文件:

  <Grid>
            <Button Content="Button" HorizontalAlignment="Left" Height="106" Margin="71,95,0,0" VerticalAlignment="Top" Width="125" Click="Button_Click_1"/>
            <TextBlock x:Name="myTextBox" 
                       HorizontalAlignment="Right" Height="106" Margin="0,95,46,0" 
                       TextWrapping="Wrap" VerticalAlignment="Top" Width="187" 
                       Text= "{Binding myText}" />

        </Grid>
于 2012-11-10T20:31:34.543 回答
1

您应该INotifyPropertyChanged在“MainWindow”中实现,以便您的“myTextBlock”可以自动从您的数据中获取更改并更新。

所以你的“MainWindow”应该是这样的:

public partial class MainWindow : Window, INotifyPropertyChanged
{
    public MainWindow()
    {
        InitializeComponent();
    }
    private string _myText;

    public string myText { 
      get{return _myText;}
      set{_myText = value;
         if(PropertyChanged!=null) PropertyChanged(this, new PropertyChangedEventArgs("myText")) ;
      }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    etc.....
}
于 2012-11-10T20:26:12.773 回答
0

您需要让属性告诉绑定它已更新。执行此操作的标准方法是:

  1. 实施INotifyPropertyChanged
  2. 使 myText 属性成为DependencyProperty
  3. 另一种可能较少使用的方法是手动引发事件,如下所示:
public void Button_Click_1(object sender, RoutedEventArgs e)
{
    myText = "Clicked";
    BindingOperations.GetBindingExpressionBase(myTextBox, TextBlock.TextProperty).UpdateTarget();
}

请注意,您TextBlock的名称令人困惑myTextBox

于 2012-11-10T20:26:59.490 回答