当Bool变量变为True时更改标签

时间:2014-05-13 21:14:00

标签: c# wpf events delegates event-handling

我不确定如何解释这个...我将把代码放在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
  }
}

3 个答案:

答案 0 :(得分:7)

除了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应该被附加并且&#34; IsAuthenticated&#34; property应该引发PropertyChanged事件。

- 根据Gayot Fow建议添加一些样板代码 -

查看代码背后:

为简单起见,我将在后面的代码中设置视图的DataContext。为了更好的设计,您可以使用ViewModelLocator,如here所述。

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):

这里的要点是附加的模型/ 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));
    }
  }
}

答案 1 :(得分:3)

由于我们使用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中,我们在资源部分声明转换器,然后将其用作“内容”绑定的“转换器”选项。在代码中,我们将value转换为bool(IsAuthenticated被假定为ViewModel中的bool),并返回一个合适的字符串。确保您的ViewModel实现INotifyPropertyChanged并且IsAuthenticated引发PropertyChanged事件以使其生效!

注意:由于您不会通过用户界面更改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();
   }
}

答案 2 :(得分:1)

是的,你需要一个活动。

考虑这样的样本:

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事件,它就会更改您的标签。