winform 动态改变listview字体颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform 动态改变listview字体颜色相关的知识,希望对你有一定的参考价值。

需求是当是警告消息时红色显示,安全消息时绿色显示,我很天真的想用listview.ForeColor = Color.Green;来控制颜色,但是实际上代码走到这里就报错,查了一些关键字也没有什么明确的方法,求菊苣指导!

下面的句子是你所需要
listView1.SelectedItems [0]背景色= Color.Red;。

请注意,项目必须在一个有效的进行检查,否则会抛出一个异常

这肯定是你没有搞清楚,这是我测试过,是你成功的关键与

那里你的listView指数变化的事件编写(具体什么名字我忘了)

当你改变,如果你想恢复自己编写
颜色的声明。默认颜色追问

并不是SelectedItems ,而是通过this.listView.Items.Add(“安全”);添加信息的时候希望是可以指定颜色的需求

参考技术A 能够贴出具体代码段?追问

通过this.listView.Items.Add(“安全”);添加信息的时候希望是可以指定颜色的需求

追答 private void Form1_Load(object sender, EventArgs e)
        
            SetlistViewItemColor(listView1,"危险",Color.Red);
            SetlistViewItemColor(listView1, "安全", Color.Green);
           
        

        public void SetlistViewItemColor(ListView lv,string value, Color c)
        
            lv.Items.Add(value);
            int count = lv.Items.Count;
            lv.Items[count-1].BackColor = c;

        

随机颜色和动态改变字体大小

 

先看随机颜色

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>随机一个颜色</title>
    <style>
        #div {
            width:400px;
            height: 400px;
            margin: 50px auto;
            text-align: center;
            line-height: 400px;
            background: red;
            font-size: 30px;
        }
    </style>
    <script>
            /*
                光的三原色  红 绿 蓝

                rgba(255, 255, 255, 1);//li用rgba这种颜色模式,因为都是数字可以随机


                parseInt(Math.random() * 256);
            */
        
        
        
        window.onload = function(){
            var oDiv = document.getElementById(‘div‘);
            setInterval(function(){ //用定时器每隔1s换一次背景
                oDiv.style.backgroundColor = randomColor(); 
            },1000);
        }
        
        /*--------------随机颜色函数------------------*/
        function randomColor(){
            //用字符串拼接 成 rgba(num, num, num, 1); 的形式 因为只要用 + 拼接 结果一定是字符串 ,刚好属性后面传入的也是字符串即 backgroundColor =‘rgba(num, num, num, 1)‘
            var str = ‘rgba(‘ + parseInt(Math.random() * 256)+‘, ‘+parseInt(Math.random() * 256)+‘, ‘+parseInt(Math.random() * 256)+‘, ‘+1 + ‘)‘;
            return str;
        }
        /*--------------随机颜色函数end------------------*/
    </script>


</head>
<body>
    <div id="div">div文本</div>
</body>
</html>

浏览器效果:

 

技术分享图片

 

 我们增加些难度,让div文本这几个字 每放大6次,再缩小6次,来回重复

 

代码示例:

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>随机一个颜色加文本每放大6次缩小6次</title>
    <style>
        #div {
            width:400px;
            height: 400px;
            margin: 50px auto;
            text-align: center;
            line-height: 400px;
            background: red;
            font-size: 30px;
        }
    </style>
    <script>
            /*
                光的三原色  红 绿 蓝

                rgba(255, 255, 255, 1);//li用rgba这种颜色模式,因为都是数字可以随机


                parseInt(Math.random() * 256);
            */
        
        
        
        window.onload = function(){
            var oDiv = document.getElementById(‘div‘);//获取div元素节点
            var speed = 5; //每次增加的数
            var count = 1;
            setInterval(function(){ //用定时器每隔1s换一次背景
                oDiv.style.backgroundColor = randomColor(); 
                //<1>当前字体大小
                var currentFontSize = parseInt(getStyle(oDiv,‘fontSize‘));
                //<2>设置新的字体大小
                oDiv.style.fontSize = currentFontSize + speed + ‘px‘; //[注] getStyle()只能获取当前属性有效值,但是不能用来设置样式。设置样式要用节点元素属性的方法。
                
                if(count % 6 == 0){//如果是6的倍数时,符号反转一次
                    speed *= -1;
                }
                count++;                                
            },1000);
        }
        
        /*--------------随机颜色函数------------------*/
        function randomColor(){
            //用字符串拼接 成 rgba(num, num, num, 1); 的形式 因为只要用 + 拼接 结果一定是字符串 ,刚好属性后面传入的也是字符串即 backgroundColor =‘rgba(num, num, num, 1)‘
            var str = ‘rgba(‘ + parseInt(Math.random() * 256)+‘, ‘+parseInt(Math.random() * 256)+‘, ‘+parseInt(Math.random() * 256)+‘, ‘+1 + ‘)‘;
            return str;
        }
        /*--------------随机颜色函数end------------------*/
        
        
        
        /*---------------封装的获取当前有效属性函数的兼容写法--------*/
        
        // 浏览器兼容写法
        function getStyle(node, styleType){
            return node.currentStyle ? node.currentStyle[styleType] : getComputedStyle(node)[styleType];
        }        
        /*---------------封装的获取当前有效属性函数的兼容写法end--------*/
        
        
    </script>


</head>
<body>
    <div id="div">div文本</div>
</body>
</html>

浏览器效果:

 

技术分享图片

 

以上是关于winform 动态改变listview字体颜色的主要内容,如果未能解决你的问题,请参考以下文章

在C# winform中怎么设置文本框中部分字体的颜色,即根据条件在编程中改变文本框中部分字体的颜色

winform 字体颜色?

winform中修改ListView选中项颜色

动态更改 ListView 中的 TextView 字体颜色

WinForm对话框

Markdown改变字体颜色