當前位置: 首頁>>代碼示例>>C#>>正文


C# Scintilla.SetBounds方法代碼示例

本文整理匯總了C#中ScintillaNET.Scintilla.SetBounds方法的典型用法代碼示例。如果您正苦於以下問題:C# Scintilla.SetBounds方法的具體用法?C# Scintilla.SetBounds怎麽用?C# Scintilla.SetBounds使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ScintillaNET.Scintilla的用法示例。


在下文中一共展示了Scintilla.SetBounds方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: InfoPanel

		public InfoPanel() {
			content = new Scintilla();
			ScintillaHack.Apply(content);

			content.BorderStyle = BorderStyle.None;
			content.Folding.IsEnabled = false;
			foreach (var i in content.Margins)
				i.Width = 0;

			content.BackColor = BackColor = Color.FromArgb(0xff, 0xff, 0xe1);

			content.Styles[1].Font = Font; // Header
			content.Styles[1].Size = 10;
			content.Styles[1].BackColor = BackColor;
			content.Styles[1].ForeColor = Color.FromArgb(0x00, 0x00, 0x00);

			content.Styles[2].Font = Font; // Name
			content.Styles[2].Size = 9;
			content.Styles[2].BackColor = BackColor;
			content.Styles[2].ForeColor = Color.FromArgb(0x00, 0x00, 0x00);
			content.Styles[2].Bold = true;

			content.Styles[3].Font = Font; // Value
			content.Styles[3].Size = 9;
			content.Styles[3].BackColor = BackColor;
			content.Styles[3].ForeColor = Color.FromArgb(0x00, 0x00, 0x00);

			content.Scrolling.HorizontalScrollTracking = true;

			content.Selection.BackColorUnfocused = content.Selection.BackColor;
			content.Selection.ForeColorUnfocused = content.Selection.ForeColor;

			const uint SCI_SETEXTRAASCENT = 2525;
			const uint SCI_SETEXTRADESCENT = 2527;
			content.NativeInterface.SendMessageDirect(SCI_SETEXTRAASCENT, 2);
			content.NativeInterface.SendMessageDirect(SCI_SETEXTRADESCENT, 3);

			content.IsReadOnly = true;

			Controls.Add(content);

			Width = Height = 100;
			content.SetBounds(0, 0, Width, Height);
			content.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Right;
		}
開發者ID:mamingxiu,項目名稱:dnExplorer,代碼行數:45,代碼來源:InfoPanel.cs


注:本文中的ScintillaNET.Scintilla.SetBounds方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。