ASP.NET取得所有颜色值示例
更新时间:2014年03月13日 17:26:52 作者:
这篇文章主要介绍了ASP.NET取得所有颜色值的方法,需要的朋友可以参考下
(1)怎样将电脑里有可用字体加入WINFORM中的ComboBox中:
一句话搞定:comboBox1.Items.AddRange (FontFamily.Families);
(2)取得所有可用颜色并填充到asp.net的下拉菜单中:
PropertyInfo[] properties;
ArrayList colors;
Color color;
// SolidBrush brush;
properties = typeof (Color).GetProperties (BindingFlags.Public | BindingFlags.Static);
colors = new ArrayList ();
foreach (PropertyInfo prop in properties)
{
// get the value of this static property
color = (Color) prop.GetValue (null, null);
// skip colors that are not interesting
if (color == Color.Transparent) continue;
if (color == Color.Empty) continue;
try
{
ddlList.Items.Add(prop.Name);
}
catch
{
}
// create a solid brush of this color
//brush = new SolidBrush (color);
//colors.Add (brush);
}
(3)怎样取得数据库的连接字符串?
A. 新建一个文本文件,文件名使用*.udl(比如:myDB.udl),此时发现图标变成数据库连接的图标了。
B. 双击此文件,弹出数据连接属性的对话框,此时你可以进行设置了。一般地,我们首先选择“提供程序”的选项卡,进行设置之后,再设置“连接”选项卡的相关属性,其他的我就不说了。设置好之后,最后按“确定”。可能会有相应的提示,你自己看着办吧。
C. 用记事本打开你刚才的这个文件。里面有类似这样的字符串:
Provider=SQLOLEDB.1;Password=123456sa;Persist Security Info=True;User ID=sa;Initial Catalog=ZPWeb;Data Source=MyServerName
如果使用SQLSERVER数据库,将Provider=SQLOLEDB.1;改为:Server=localhost;即可。
一句话搞定:comboBox1.Items.AddRange (FontFamily.Families);
(2)取得所有可用颜色并填充到asp.net的下拉菜单中:
复制代码 代码如下:
PropertyInfo[] properties;
ArrayList colors;
Color color;
// SolidBrush brush;
properties = typeof (Color).GetProperties (BindingFlags.Public | BindingFlags.Static);
colors = new ArrayList ();
foreach (PropertyInfo prop in properties)
{
// get the value of this static property
color = (Color) prop.GetValue (null, null);
// skip colors that are not interesting
if (color == Color.Transparent) continue;
if (color == Color.Empty) continue;
try
{
ddlList.Items.Add(prop.Name);
}
catch
{
}
// create a solid brush of this color
//brush = new SolidBrush (color);
//colors.Add (brush);
}
(3)怎样取得数据库的连接字符串?
A. 新建一个文本文件,文件名使用*.udl(比如:myDB.udl),此时发现图标变成数据库连接的图标了。
B. 双击此文件,弹出数据连接属性的对话框,此时你可以进行设置了。一般地,我们首先选择“提供程序”的选项卡,进行设置之后,再设置“连接”选项卡的相关属性,其他的我就不说了。设置好之后,最后按“确定”。可能会有相应的提示,你自己看着办吧。
C. 用记事本打开你刚才的这个文件。里面有类似这样的字符串:
Provider=SQLOLEDB.1;Password=123456sa;Persist Security Info=True;User ID=sa;Initial Catalog=ZPWeb;Data Source=MyServerName
如果使用SQLSERVER数据库,将Provider=SQLOLEDB.1;改为:Server=localhost;即可。
相关文章
一文轻松了解ASP.NET与ASP.NET Core多环境配置对比
ASP.NET Core支持在多个环境中管理应用程序,如开发(Development),预演(Staging)和生产(Production),下面这篇文章主要给大家介绍了关于ASP.NET与ASP.NET Core多环境配置对比 的相关资料,需要的朋友可以参考下2022-04-04asp.net core configuration配置读取的实现
本文主要介绍了asp.net core configuration配置读取,configuration可以从命令行、环境变量、配置文件读取配置,具有一定的参考价值,感兴趣的可以了解一下2023-11-11使用.NET 6开发TodoList应用之引入数据存储的思路详解
在这篇文章中,我们仅讨论如何实现数据存储基础设施的引入,具体的实体定义和操作后面专门来说。对.NET 6开发TodoList引入数据存储相关知识感兴趣的朋友一起看看吧2021-12-12asp.net实现在XmlTextWriter中写入一个CDATA的方法
这篇文章主要介绍了asp.net实现在XmlTextWriter中写入一个CDATA的方法,结合实例形式分析了XmlTextWriter写入CDATA的步骤与相关实现技巧,需要的朋友可以参考下2016-04-04
最新评论