- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ListView
,我使用 TextWriter
的实现将输出重定向到如下:
ScriptEngine pyEngine;
pyEngine.Runtime.IO.RedirectToConsole();
Console.SetOut(TextWriter.Synchronized(new ListViewWriter(lbIpyOutput, Dispatcher)));
我想实现一个基于枚举值的 ListView item
的彩色背景。
在此处的大多数示例中,DataBinding
用于类的属性。对我来说,颜色不依赖于任何属性,而是依赖于 Enum
。 Atm 我使用一种方法来格式化输出。
public static void WriteToConsole(string _stringToWrite)
{
string output = String.Format("PY | {0} | {1} | {2}", tagCount, DateTime.Now, _stringToWrite);
Console.WriteLine(output);
tagCount++;
}
ListViewWriter
是 TextWriter
class ListViewWriter : TextWriter
{
private ListView listView;
public ListViewWriter(ListView _listBox, Dispatcher _dispatcher)
{
listView = _listBox;
}
public override void WriteLine(string value)
{
base.WriteLine(value);
listView.Items.Add(value.ToString());
}
}
由于 DataBinding
似乎不是我想做的覆盖 Console.WriteLine(String _stringToWrite, MyEnum enum)
的选项,但这显然行不通因为 TextWriter
发现“没有合适的方法来覆盖”。
我也创建了一个转换器类,但不知道如何使用(不确定是否真的可以将十六进制值用作字符串):
class OutputBackgroundConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Severity severity = (Severity)value;
string bgColor = "Gray";
switch (severity)
{
case Severity.CRITIC:
bgColor = "27ae60"; //carrot orange
break;
case Severity.DEBUG:
bgColor = "3498db"; //peter river blue
break;
case Severity.ERROR:
bgColor = "e74c3c"; //alizarin red
break;
case Severity.MESSAGE:
bgColor = "95a5a6"; //concrete grey
break;
case Severity.WARNING:
bgColor = "9b59b6"; //amethyst purple
break;
}
return bgColor;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
如果有人能帮助我,那就太好了。我真的不知道如何解决这个问题,而且我对 WPF 还很陌生。
网络版本:4.5.1
编辑1枚举仅用于内部日志记录,如下所示:
enum Severity{CRITIC, WARNING, DEBUG, MESSAGE, ERROR};
最佳答案
我认为这应该对你有用,但如果你有任何问题,请告诉我。
忘记重写 WriteLine
函数。只需将它封装在您自己的可以处理枚举参数的函数中,然后像以前一样调用基本功能。
每次添加新项目时,我添加的部分都会更改 ListView
中最后一项的背景颜色。
新的 WriteLineWithEnum
函数:
public void WriteLineWithEnum(string value, Severity severity)
{
ListViewItem item = new ListViewItem();
item.Content = value.ToString();
SolidColorBrush bgColorBrush = OutputBackgroundConverter.Convert(severity);
item.Background = bgColorBrush;
myListView.Items.Add(item);
}
然后增强您的 Convert
函数,返回一个 SolidColorBrush
对象,该对象在上面用于更改 ListViewItem
的背景颜色。请注意,我将其设为静态并取消了“IValueConverter”继承。如果需要/您可以将它们添加回去。
新的转换
函数:
class OutputBackgroundConverter
{
public static SolidColorBrush Convert(Severity severity)
{
string bgColor = "d3d3d3"; //Gray;
switch (severity)
{
case Severity.CRITIC:
bgColor = "27ae60"; //carrot orange
break;
case Severity.DEBUG:
bgColor = "3498db"; //peter river blue
break;
case Severity.ERROR:
bgColor = "e74c3c"; //alizarin red
break;
case Severity.MESSAGE:
bgColor = "95a5a6"; //concrete grey
break;
case Severity.WARNING:
bgColor = "9b59b6"; //amethyst purple
break;
}
SolidColorBrush brush = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#" + bgColor));
return brush;
}
}
我制作了一个快速演示应用程序来概括这个想法。代码和结果如下。
主窗口.xaml:
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ListView Name="myListView" Margin="20">
</ListView>
</Grid>
</Window>
主窗口.xaml.cs:
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Threading;
namespace WpfApplication2
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
System.Random rand = new System.Random();
for (int i = 0; i < 10; i++)
{
int randInt = rand.Next(100, 1000);
string randStr = randInt.ToString();
this.AddListViewItem(randStr, (Severity)(i % 5)); //5 is number of Severities
}
}
public void AddListViewItem(string value, Severity severity)
{
ListViewItem item = new ListViewItem();
item.Content = value.ToString();
SolidColorBrush bgColorBrush = OutputBackgroundConverter.Convert(severity);
item.Background = bgColorBrush;
myListView.Items.Add(item);
}
}
public enum Severity
{
CRITIC = 0,
DEBUG = 1,
ERROR = 2,
MESSAGE = 3,
WARNING = 4,
}
class OutputBackgroundConverter
{
public static SolidColorBrush Convert(Severity severity)
{
string bgColor = "d3d3d3"; //Gray;
switch (severity)
{
case Severity.CRITIC:
bgColor = "27ae60"; //carrot orange
break;
case Severity.DEBUG:
bgColor = "3498db"; //peter river blue
break;
case Severity.ERROR:
bgColor = "e74c3c"; //alizarin red
break;
case Severity.MESSAGE:
bgColor = "95a5a6"; //concrete grey
break;
case Severity.WARNING:
bgColor = "9b59b6"; //amethyst purple
break;
}
SolidColorBrush brush = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#" + bgColor));
return brush;
}
}
}
结果:
再一次,如果这不能解决问题,请告诉我,我会尝试修复它。谢谢!
关于c# - 根据 TextWriter 输入 wpf 为 ListView 分配背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39167284/
我正在尝试将文本写入我的 txt 文件。第一次写应用程序崩溃并报错后 Cannot write to a closed TextWriter 我的列表包含浏览器打开的链接,我想将它们全部保存在 txt
我正在使用 CsvHelper,它使用 TextWriter 来写入其输出。我不想写入文件,而是想将内容写入控制台。如何获得将写入控制台的 TextWriter? 最佳答案 使用 Console.Ou
我已经编写了一个服务,它有一个单独的线程运行,它从数据库中读取大约 400 条记录并将它们序列化为 xml 文件。它运行良好,没有错误,它报告所有文件都已正确导出,但之后只出现少数 xml 文件,而且
using (TextWriter writer = File.CreateText(path2)) {
好吧,我正在使用 ILSpy 进行巡查,并试图弄清楚这里发生了什么,但我运气不太好。 在使用 Razor 引擎的 ASP.NET MVC4 应用程序中的给定 View 中(但这当然适用于 MVC3,可
我正在尝试实现一个将一些 ActiveDirectory 信息显示到网页上的功能,但是当我出于某种原因尝试显示某些信息(用户的经理)时,它开始向我抛出以下错误,但它没有完成那在过去。任何人都可以解释这
这段代码应该是不言自明的: XDocument xd = .... using (FileStream fs = new FileStream("test.txt", FileMode.Open, F
alt text http://img179.imageshack.us/img179/7827/textwriter.jpg tf.txt 文件有 0 个字节,当在循环中多次调用此方法时,我得到:
我正在编写一个将数据导出到 CSV 文件的类,它的构造函数接受一个 TextWriter。我使用 TextWriter 而不是 StreamWriter 的原因是这样可以使测试更容易:我可以使用相同的
我有两个类,我不能以任何方式更改它们中的任何一个: 第 1 类:采用 TextWriter 作为构造函数参数并将其用作输出流。 类2:提供方法WriteLine(string)。 我需要一个适配器,以
我有 xml,我在另一个 resurse 中通过 API 发送了它。我通过 XDocument 创建它: XDocument xDoc = new XDocument( new XDeclar
我写了一个接受 TextWriter 的方法作为参数(通常是 Console.Out,但不一定)。 当我调用此方法时,一些进度信息将写入 TextWriter。 但是,由于此方法可以运行很长时间,因此
如何使用 TextWriter 对象清除文本文件的所有数据? mt文件名为:user_name.txt 谢谢。 最佳答案 FileMode.Truncate 将从文件中删除所有文本,然后打开文件进行写
我正在使用 textwriter 将数据写入文本文件,但如果该行超过 1024 个字符,则会插入一个换行符,这对我来说是个问题。关于如何解决这个问题或增加字符数限制的任何建议? textWriter.
关于防止“已在使用”错误,我想问一下,如果从多个客户端多次调用,第一个代码片段是否可能存在危险?还是两个代码块都同样安全? 我问是因为第二个代码片段调用了一个 close 方法,该方法也进行了一个听起
对于像增量捕获文本这样的情况,例如,如果您在呈现页面时收到所有 output.write 调用,并且这些调用通过 stringbuilder 附加到文本编写器中。 有没有更有效的方法来做到这一点?最好
我正在编写一个 xml 文件,但缺少特定字段的某些值。我检查当对象出现时包含特定值存在的值,但是在编写 xml 之后该值不存在。 这是我使用的代码,我认为 XmlTextWriter 可能是错误的 x
有没有办法使用 HtmlTextWriter 创建它?我正在尝试创建一种在服务器端动态创建 html 的方法 这是代码的开始我不确定如何创建“data-theme”属性,因为没有为此提供的枚举..
正在苦苦思索如何将 2 个字符串一起加密。 因为我实时添加位和位字符串(通过 str = str + bitString;)并在最后。我生成字符串并将其加密。 现在的问题是我可以像textwriter
我从我的 C# 代码调用一个 API,该代码的方法带有以下 header public void ExternalFactory.SetOut(TextWriter outputStream) 我通
我是一名优秀的程序员,十分优秀!