1

我有一个LoggingService映射到视图的。修改后会显示一些文本。

到目前为止它工作正常,但是想根据LoggingType.

我的问题是我找不到应该订阅 LoggingService 属性更改事件以调用以下UpdateTextStyle方法的位置:

    private void UpdateTextStyle(ILoggingService logging, string propertyName)
    {
        var loggingType = logging.GetUserLevelLatestLog().Key;
        switch (loggingType)
        {
            case LoggingTypes.Error:
                View.UserInfoLogsTextBlock.Foreground = new SolidColorBrush(Colors.Red);
                View.UserInfoLogsTextBlock.FontWeight = FontWeights.Bold;
                break;
        ...
        }
    }

这是在我的 VM 中映射到我的视图的属性:

    public ILoggingService LoggingService   
    {
        get
        {
            if (_loggingService == null)
            {
                _loggingService = Model.LoggingService;
            }
            return _loggingService;
        }
    }

提前致谢!

4

1 回答 1

1

不要在属性更改事件上使用,除非您知道自己在 WPF 中做什么。您将导致内存泄漏。

我假设您在 XAML 中LoggingService绑定了您的(我假设) 。TextBox

因此,我建议您创建一个IValueConverterfor然后通过您的转换器将您绑定LoggingTypes到您的。StyleTextBox.StyleLoggingService.LoggingType

<UserControl>
   <UserControl.Resources>
       <LoggingStyleConverter x:Key="LoggingStyleConverter" />
   </UserControl.Resources>
   <TextBox
        Text="{Binding Path=Foo.Bar.LoggingService.Text}"
        Style="{Binding Path=Foo.Bar.LoggingService.Type 
                  Converter={StaticResource LoggingStyleConverter}}"
   />
</UserControl>


public class LoggingStyleConverter : IValueConverter
{
    public object Convert(object value, blah blah blah)
    {
        var type = (LoggingTypes)value;
        switch (type)
        {
            case blah:
                return SomeStyle;
            default:
                return SomeOtherStyle;
        }
    }
}
于 2013-10-25T04:15:15.983 回答