📄 defaultcs.aspx.cs
字号:
using System;
using System.Collections;
using System.Data;
using System.IO;
using Telerik.QuickStart;
using Telerik.WebControls;
namespace Telerik.ComboboxExamplesCS.ProgrammaticBinding
{
/// <summary>
/// Summary description for _Default.
/// </summary>
public class DefaultCS: XhtmlPage
{
protected Telerik.WebControls.RadComboBox RadComboBox1;
private void LoadItems()
{
RadComboBoxItem item1 = new RadComboBoxItem("r.a.d.editor");
item1.Attributes.Add("ImagePath", "e");
RadComboBox1.Items.Add(item1);
RadComboBoxItem item2 = new RadComboBoxItem("r.a.d.treeview");
item2.Attributes.Add("ImagePath", "t");
RadComboBox1.Items.Add(item2);
RadComboBoxItem item3 = new RadComboBoxItem("r.a.d.spell");
item3.Attributes.Add("ImagePath", "s");
RadComboBox1.Items.Add(item3);
RadComboBoxItem item4 = new RadComboBoxItem("r.a.d.menu");
item4.Attributes.Add("ImagePath", "m");
RadComboBox1.Items.Add(item4);
RadComboBoxItem item5 = new RadComboBoxItem("r.a.d.tabstrip");
item5.Attributes.Add("ImagePath", "tab");
RadComboBox1.Items.Add(item5);
}
private void Page_Load(object sender, System.EventArgs e)
{
if (!Page.IsPostBack)
{
LoadItems();
}
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -