zoukankan      html  css  js  c++  java
  • Color类 通过反射将Color中定义的颜色输出

    using System.Drawing;
    using System.Reflection;

    using System.Text;

    protected void Page_Load(object sender, EventArgs e)
    {
                //以Color 对象为例 输出所有定义的属性颜色
                Type t = typeof(Color);
                PropertyInfo[] properties = t.GetProperties(BindingFlags.Static | BindingFlags.Public);
                StringBuilder sb = new StringBuilder();
                int i = 0;
                foreach (PropertyInfo info in properties)
                {
                    sb.AppendFormat("<span style='background-color:{0};140px;border:2px solid #336699; margin:5px; line-height:30px; text-align:center; vertical-align:middle'>{0}</span>", info.Name);
                    i++;
                    //每行显示9个.
                    if (i % 9 == 0)
                    {
                        sb.Append("<br/>");
                    }
                }
                Response.Write(sb.ToString());
    }

    //输出如图

    没有目标的人都只在帮有目标的人完成目标

  • 相关阅读:
    RDD(弹性分布式数据集)的分析
    Spark 开发环境搭建
    本地yum仓库的配置安装
    Java使用PDFBox操作PDF文件获取页码、文章内容、缩略图
    利用bdb实现持久化队列
    SQL查询重复记录
    SQL删除某个时间段的数据
    JAVA文件读取和解析
    多线程
    DOC解析xml
  • 原文地址:https://www.cnblogs.com/tweet/p/1647929.html
Copyright © 2011-2022 走看看