VB中美化ComboBox控件下拉列表

源代码在线查看: program.cs

软件大小: 68 K
上传用户: SLing2008
关键词: ComboBox 美化 控件
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				using System.Collections.Generic;
				using System.Linq;
				using System.Windows.Forms;
				
				namespace PrettifyListedBelow
				{
				    static class Program
				    {
				        /// 
				        /// 应用程序的主入口点。
				        /// 
				        [STAThread]
				        static void Main()
				        {
				            Application.EnableVisualStyles();
				            Application.SetCompatibleTextRenderingDefault(false);
				            Application.Run(new PrettifyListedBelow());
				        }
				    }
				}
							

相关资源