バージョン

ImageListLarge プロパティ

コントロールに関連付けられた大きいイメージのリストを含むImageListコントロールを取得または設定します。
シンタックス
'宣言
 
Public Property ImageListLarge As ImageList
public ImageList ImageListLarge {get; set;}
解説

UltraExplorerBarGroupの、または UltraExplorerBarItem の解決された Image プロパティが整数型で、UltraExplorerBarGroup または UltraExplorerBarItem が大きい画像を使用している場合には、UltraExplorerBarGroupUltraExplorerBarItem がこのリストの画像を使用します。

ImageList コントロールの大きい UltraExplorerBarGroup 画像と UltraExplorerBarItem 画像は、デザインタイムに、または Appearance オブジェクトと AppearancesLarge オブジェクトで AppearancesLarge オブジェクトの System.Drawing.Image プロパティを設定することによって、個別に指定できます。

ImageListSmall プロパティは、小さい UltraExplorerBarGroup 画像と UltraExplorerBarItem 画像を含む ImageList コントロールを示します。

ImageSizeLarge プロパティを使用して、大きい UltraExplorerBarGroup 画像と UltraExplorerBarItem 画像のサイズを指定します。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button8.Click

		If (Not Me.ultraExplorerBar1.ImageListSmall Is Nothing) Then
			' Add some images to the ImageList that supplies the small images.
			Me.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Application)
			Me.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Asterisk)


			' Add some images to the ImageList that supplies the large images.
			Me.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Application)
			Me.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Asterisk)
		End If


		' Set the small and large image sizes.  This will determine how much space the control sets
		' aside for small and large images.
		Me.ultraExplorerBar1.ImageSizeSmall = New Size(22, 22)
		Me.ultraExplorerBar1.ImageSizeLarge = New Size(42, 43)


		' Set the color that chould be interperted as the transparent color.
		Me.ultraExplorerBar1.ImageTransparentColor = Color.Magenta

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;

		private void button8_Click(object sender, System.EventArgs e)
		{
			if (this.ultraExplorerBar1.ImageListSmall != null)
			{
				// Add some images to the ImageList that supplies the small images.
				this.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Application);
				this.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Asterisk);


				// Add some images to the ImageList that supplies the large images.
				this.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Application);
				this.ultraExplorerBar1.ImageListSmall.Images.Add(SystemIcons.Asterisk);
			}


			// Set the small and large image sizes.  This will determine how much space the control sets
			// aside for small and large images.
			this.ultraExplorerBar1.ImageSizeSmall	= new Size(22, 22);
			this.ultraExplorerBar1.ImageSizeLarge	= new Size(42, 43);


			// Set the color that chould be interperted as the transparent color.
			this.ultraExplorerBar1.ImageTransparentColor	= Color.Magenta;
		}
参照