コード例 #1
0
ファイル: Rebar.cs プロジェクト: sillsdev/WorldPad
		protected override void CreateHandle()
		{
			if (!RecreatingHandle)
			{
				INITCOMMONCONTROLSEX icex = new INITCOMMONCONTROLSEX();
				icex.dwSize = Marshal.SizeOf(typeof(INITCOMMONCONTROLSEX));
				icex.dwICC = (int)(CommonControlInitFlags.ICC_BAR_CLASSES | CommonControlInitFlags.ICC_COOL_CLASSES);
				bool  fail = WindowsAPI.InitCommonControlsEx(icex);
			}
			base.CreateHandle();
		}
コード例 #2
0
ファイル: Functions.cs プロジェクト: sillsdev/WorldPad
		public static extern bool InitCommonControlsEx(INITCOMMONCONTROLSEX icc);
コード例 #3
0
ファイル: ToolBarEx.cs プロジェクト: sillsdev/WorldPad
		protected override void CreateHandle()
		{
			// Make sure common control library initilizes toolbars and rebars
			if ( !RecreatingHandle )
			{
				INITCOMMONCONTROLSEX icex = new INITCOMMONCONTROLSEX();
				icex.dwSize = Marshal.SizeOf(typeof(INITCOMMONCONTROLSEX));
				icex.dwICC = (int)(CommonControlInitFlags.ICC_BAR_CLASSES | CommonControlInitFlags.ICC_COOL_CLASSES);
				WindowsAPI.InitCommonControlsEx(icex);
			}

			base.CreateHandle();
		}
コード例 #4
0
ファイル: Functions.cs プロジェクト: vkarthim/FieldWorks
 public static extern bool InitCommonControlsEx(INITCOMMONCONTROLSEX icc);