简体   繁体   English

无法绑定XAML uwp

[英]Trouble binding XAML uwp

Hi I am following this tutorial, http://blogs.u2u.be/diederik/post/2011/11/14/null.aspx , to bind the visibility of an element to a Boolean property. 嗨,我正在关注本教程http://blogs.u2u.be/diederik/post/2011/11/14/null.aspx ,以将元素的可见性绑定到Boolean属性。 The program is not working. 该程序无法正常工作。 Here is the code: 这是代码:

<Page.Resources>
    <local:BooleanToVisibilityConverter x:Key="TrueToVisibleConverter"/>
</Page.Resources>

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <StackPanel>
        <TextBlock  Text=" Hello World" 
                    Visibility="{Binding Path=Show_element, Converter={StaticResource TrueToVisibleConverter}}"/>
        <Button Click="Button_Click">press button</Button>
    </StackPanel>
</Grid>

public sealed partial class MainPage : Page , INotifyPropertyChanged
{
    private bool show_element ;
    public bool Show_element
    {
        get { return show_element; }
        set
        {
            show_element = value;
            this.OnPropertyChanged();
            Debug.WriteLine("Show_element value changed");
        }
    }
    public MainPage()
    {
        this.InitializeComponent();
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        Show_element = !Show_element;
    }
    public event PropertyChangedEventHandler PropertyChanged = delegate { };
    public void OnPropertyChanged(string propertyName = null)
    {
        this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}
public class BooleanToVisibilityConverter : IValueConverter
{       
    public bool IsReversed { get; set; }

    public object Convert(object value, Type typeName, object parameter, string language)
    {
        var val = System.Convert.ToBoolean(value);
        if (this.IsReversed)
        {
            val = !val;
        }

        if (val)
        {
            return Visibility.Visible;
        }

        return Visibility.Collapsed;
    }

    public object ConvertBack(object value, Type targetType, object parameter, string language)
    {
        throw new NotImplementedException();
    }
}

The visibility does not change with the property. 可见性不会随属性改变。 I was having an error due to intellisense ( Error Xaml namespace ) which was resolved. 由于遇到了Intellisense( 错误Xaml名称空间 ),我遇到了一个错误。 Not sure what is wrong with this code. 不确定此代码有什么问题。

Thank you. 谢谢。

change 更改

this.OnPropertyChanged();

to

this.OnPropertyChanged("Show_element");

edit: besides that, you don't have a ViewModel (sorry, missed that when I was checking your code), so you need to create one and set it as DataContext: 编辑:此外,您没有ViewModel(对不起,在检查您的代码时错过了),因此您需要创建一个并将其设置为DataContext:

ViewModel.cs: ViewModel.cs:

public class ViewModel : INotifyPropertyChanged
{
    private bool show_element;
    public bool Show_element
    {
        get { return show_element; }
        set
        {
            show_element = value;
            this.OnPropertyChanged("Show_element");
            Debug.WriteLine("Show_element value changed");
        }
    }
    public ViewModel()
    {
    }

    public void ButtonClicked()
    {
        Show_element = !Show_element;
    }

    public event PropertyChangedEventHandler PropertyChanged = delegate { };
    public void OnPropertyChanged(string propertyName = null)
    {
        this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}

and your MainPage.xaml.cs should look somehow like that: 并且您的MainPage.xaml.cs应该看起来像这样:

public sealed partial class MainPage : Page
{        
    private ViewModel _viewModel;

    public MainPage()
    {
        this.InitializeComponent();
        _viewModel = new ViewModel();
        DataContext = _viewModel;
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        _viewModel.ButtonClicked();
    }        
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM