我真的不知道如何解释这个…我将把代码放在psuedo代码中以便于阅读
我想一个标签改变它的文本当一个类的bool变量改变…我不确定我需要使用什么,因为我正在使用WPF和类不能只是改变标签,我不认为?
我需要一些事件吗?还是WPF活动?谢谢你的帮助
public MainWindow()
{
SomeClass temp = new SomeClass();
void ButtonClick(sender, EventArgs e)
{
if (temp.Authenticate)
label.Content = "AUTHENTICATED";
}
}
public SomeClass
{
bool _authenticated;
public bool Authenticate()
{
//send UDP msg
//wait for UDP msg for authentication
//return true or false accordingly
}
}
与BradledDotNet答案不同的另一种WPF方法是使用触发器。这将是完全基于XAML的,没有转换代码。
XAML:
<Label>
<Label.Style>
<Style TargetType="Label">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=IsAuthenticated}" Value="True">
<Setter Property="Content" Value="Authenticated" />
</DataTrigger>
</Style.Triggers>
</Style>
</Label.Style>
</Label>
同样的规则也适用于BradledDotNet, ViewModel应该被附加,"IsAuthenticated"属性应该引发PropertyChanged事件。
——按照Gayot flow的建议添加一些样板代码——
View Code Behind:
为简单起见,我将在后面的代码中设置视图的DataContext。为了更好的设计,您可以使用ViewModelLocator,如下所示。
public partial class SampleWindow : Window
{
SampleModel _model = new SampleModel();
public SampleWindow() {
InitializeComponent();
DataContext = _model; // attach the model/viewmodel to DataContext for binding in XAML
}
}
示例模型(实际上应该是ViewModel):
这里的要点是附加的模型/视图模型必须实现INotifyPropertyChanged。
public class SampleModel : INotifyPropertyChanged
{
bool _isAuthenticated = false;
public bool IsAuthenticated {
get { return _isAuthenticated; }
set {
if (_isAuthenticated != value) {
_isAuthenticated = value;
OnPropertyChanged("IsAuthenticated"); // raising this event is key to have binding working properly
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
void OnPropertyChanged(string propName) {
if (PropertyChanged != null) {
PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}
}
由于我们使用的是WPF,因此我将使用绑定和转换器来完成此操作:
<Page.Resources>
<local:BoolToAuthenticationStringConverter x:Key="BoolToAuthenticationStringConverter"/>
</Page>
<Label Content="{Binding Path=IsAuthenticated, Converter={StaticResource BoolToAuthenticationStringConverter}"/>
然后是如下格式的转换器:
public class BoolToAuthenticationStringConverter : IValueConverter
{
public object Convert (...)
{
if ((bool)value)
return "Authenticated!";
else
return "Not Authenticated!";
}
public object ConvertBack (...)
{
//We don't care about this one for this converter
throw new NotImplementedException();
}
}
在我们的XAML中,我们在资源部分声明转换器,然后将其用作"Content"绑定的"converter"选项。在代码中,我们将value
转换为bool(假定IsAuthenticated
在ViewModel中是bool),并返回一个适当的字符串。确保您的ViewModel实现INotifyPropertyChanged
,并且IsAuthenticated
引发PropertyChanged
事件以使其工作!
注意:因为你不会通过UI改变Label
,你不需要担心ConvertBack
。您可以将模式设置为OneWay
,以确保它永远不会被调用。
当然,这是非常特定于这个场景的。我们可以创建一个通用的:
<Label Content="{Binding Path=IsAuthenticated, Converter={StaticResource BoolDecisionToStringConverter}, ConverterParameter='Authenticated;Not Authenticated'}"/>
然后是如下格式的转换器:
public class BoolDecisionToStringConverter : IValueConverter
{
public object Convert (...)
{
string[] args = String.Split((String)parameter, ';');
if ((bool)value)
return args[0];
else
return args[1];
}
public object ConvertBack (...)
{
//We don't care about this one for this converter
throw new NotImplementedException();
}
}
是的,你需要一个事件。
考虑如下示例:
public SomeClass {
public event EventHandler<EventArgs> AuthenticateEvent;
boolean isAuthenticated;
public bool Authenticate()
{
// Do things
isAuthenticated = true;
AuthenticateEvent(this, new EventArgs());
}
}
public MainWindow()
{
SomeClass temp = new SomeClass();
public MainWindow(){
temp.AuthenticateEvent+= OnAuthentication;
temp.Authenticate();
}
private void OnAuthentication(object sender, EventArgs e){
Dispatcher.Invoke(() => {
label.Content = "AUTHENTICATED";
});
}
}
现在只要temp
触发Authenticate
事件,它就会改变你的标签