在MVVM光中绑定windows 8 textBlock

时间:2013-02-16 12:38:18

标签: c# xaml windows-8 mvvm-light

我遇到TextBlock / TextBox绑定问题。 TextBlock不显示属性的内容。当我调试我的应用程序时,属性有内容。你怎么能这样做? XAML。

<TextBlock HorizontalAlignment="Left" Margin="730,191,0,0" TextWrapping="Wrap" Text="{Binding XmlContentFile, Mode=TwoWay}"   VerticalAlignment="Top" Height="429" Width="465"/>

我在网上找到了简单的代码,但我找不到代码。

代码属性

 public string XmlContentFile
        {
            get
            {
                return this.xmlContentFile;
            }
            set
            {
                this.xmlContentFile = value;

            }
        }

我的DataContext

DataContext="{Binding Main, Source={StaticResource Locator}}">

方法将XML文件加载到字符串变量

public async void  XmlContentLoad()
        {

            if (selectFile != null)
            {
                try
                {

                    StorageFolder storageFolder = ApplicationData.Current.LocalFolder;
                    StorageFile storageFile = await storageFolder.GetFileAsync(selectFile);
                    xmlFileTextContent = await FileIO.ReadTextAsync(storageFile);



                }
                catch (Exception)
                {
                    throw new Exception("Bug");
                }
            }
        }

2 个答案:

答案 0 :(得分:1)

问题是您的 XmlContentFile 属性在更改时不会引发任何通知。您的ViewModel需要实现 INotifyPropertyChanged ,并在任何属性发生更改时引发事件。

您的视图及其数据绑定可能会在 XmlContentLoad 完成之前进行设置和执行(它是异步的)。如果在加载数据之前绑定已经完成,则绑定将再次发生的唯一方法是该属性是否会发出已更改的通知。

还值得指出的是,在 XmlContentLoad 方法中,您要设置私有变量而不是公共属性。

xmlFileTextContent = await FileIO.ReadTextAsync(storageFile);

设置私有变量永远不会引发属性更改通知,即使您已连接setter代码来引发通知。您需要更改 XmlContentLoad 以设置属性并在设置器中设置 OnPropertyChanged 通知(推荐),否则您需要在设置私有后调用OnPropertyChanged变量(不推荐)。

希望有所帮助。

开发人员的支持,设计支持和更加出色的善意:http://bit.ly/winappsupport

答案 1 :(得分:0)

确保正确设置绑定源:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:WpfApplication1="clr-namespace:WpfApplication1"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded_1" >
<Grid>
    <TextBlock Text="{Binding XmlContentFile, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="#FFF3A3A3"/>
</Grid>

并确保您在正确的位置设置您的财产的价值:

public partial class MainWindow : Window,INotifyPropertyChanged
{
    private string _xmlContentFile;
    public string XmlContentFile
    {
        get
        {
            return _xmlContentFile ;
        }
        set 
        { 
            _xmlContentFile = value;
            OnPropertyChanged("XmlContentFile");
        }
    }
    public MainWindow()
    {
        InitializeComponent();
    }


    private void Window_Loaded_1(object sender, RoutedEventArgs e)
    {
        XmlContentFile = "New Value !";
    }

    public event PropertyChangedEventHandler PropertyChanged;

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

确实,这个答案不在MVVM中,但除了你需要将你的DataContext设置为ViewModel之外,不需要太多的改变。