我有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中的View的属性:
public ILoggingService LoggingService
{
get
{
if (_loggingService == null)
{
_loggingService = Model.LoggingService;
}
return _loggingService;
}
}
提前致谢!
答案 0 :(得分:1)
除非您知道自己在WPF中所做的事情,否则不要在属性更改事件上使用。您将导致内存泄漏。
我假设您在XAML中绑定了您的LoggingService
(我假设)TextBox
。
因此,我建议您为IValueConverter
LoggingTypes
创建一个Style
,然后通过转换器将TextBox.Style
绑定到LoggingService.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;
}
}
}