本文整理匯總了C#中System.Windows.Forms.TabControl.ImageList屬性的典型用法代碼示例。如果您正苦於以下問題:C# TabControl.ImageList屬性的具體用法?C# TabControl.ImageList怎麽用?C# TabControl.ImageList使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Windows.Forms.TabControl
的用法示例。
在下文中一共展示了TabControl.ImageList屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Form1
//引入命名空間
using System.Drawing;
using System.ComponentModel;
using System.Windows.Forms;
using System.Resources;
public class Form1 : Form
{
public Form1()
{
IContainer components = new Container();
ResourceManager resources = new ResourceManager(typeof(Form1));
TabControl tabControl1 = new TabControl();
TabPage tabPage1 = new TabPage();
// Declares and instantiates the ImageList object.
ImageList myImages = new ImageList(components);
tabControl1.Controls.Add(tabPage1);
// Sets the images in myImages to display on the tabs of tabControl1.
tabControl1.ImageList = myImages;
tabPage1.ImageIndex = 0;
tabPage1.Text = "tabPage1";
// Gets the handle that provides the data of myImages.
myImages.ImageStream = ((ImageListStreamer)(resources.GetObject("myImages.ImageStream")));
// Sets properties of myImages.
myImages.ColorDepth = ColorDepth.Depth8Bit;
myImages.ImageSize = new Size(16, 16);
myImages.TransparentColor = Color.Transparent;
this.Controls.Add(tabControl1);
}
static void Main()
{
Application.Run(new Form1());
}
}