当前位置: 首页>>代码示例>>C#>>正文


C# ComboBox.QueueResize方法代码示例

本文整理汇总了C#中Gtk.ComboBox.QueueResize方法的典型用法代码示例。如果您正苦于以下问题:C# ComboBox.QueueResize方法的具体用法?C# ComboBox.QueueResize怎么用?C# ComboBox.QueueResize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Gtk.ComboBox的用法示例。


在下文中一共展示了ComboBox.QueueResize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ShowIncorrectEolMarkers

		void ShowIncorrectEolMarkers (string fileName, bool multiple)
		{
			RemoveMessageBar ();
			var hbox = new HBox ();
			hbox.Spacing = 8;

			var image = new HoverCloseButton ();
			hbox.PackStart (image, false, false, 0);
			var label = new Label (string.Format ("This file has line endings ({0}) which differ from the policy settings ({1}).", GetEolString (DetectedEolMarker), GetEolString (textEditor.Options.DefaultEolMarker)));
			var color = (HslColor)textEditor.ColorStyle.NotificationText.Foreground;
			label.ModifyFg (StateType.Normal, color);

			int w, h;
			label.Layout.GetPixelSize (out w, out h);
			label.Ellipsize = Pango.EllipsizeMode.End;

			hbox.PackStart (label, true, true, 0);
			var okButton = new Button (Gtk.Stock.Ok);
			okButton.WidthRequest = 60;

			// Small amount of vertical padding for the OK button.
			const int verticalPadding = 2;
			var vbox = new VBox ();
			vbox.PackEnd (okButton, true, true, verticalPadding);
			hbox.PackEnd (vbox, false, false, 0);

			var list = new List<string> ();
			list.Add (string.Format ("Convert to {0} line endings", GetEolString (textEditor.Options.DefaultEolMarker)));
			list.Add (string.Format ("Convert all files to {0} line endings", GetEolString (textEditor.Options.DefaultEolMarker)));
			list.Add (string.Format ("Keep {0} line endings", GetEolString (DetectedEolMarker)));
			list.Add (string.Format ("Keep {0} line endings in all files", GetEolString (DetectedEolMarker)));
			var combo = new ComboBox (list.ToArray ());
			combo.Active = 0;
			hbox.PackEnd (combo, false, false, 0);
			incorrectEolMessage = new HBox ();
			const int containerPadding = 8;
			incorrectEolMessage.PackStart (hbox, true, true, containerPadding); 

			// This is hacky, but it will ensure that our combo appears with with the correct size.
			GLib.Timeout.Add (100, delegate {
				combo.QueueResize ();
				return false;
			});

			AddOverlay (incorrectEolMessage, () => {
				return okButton.SizeRequest ().Width +
							   combo.SizeRequest ().Width +
							   image.SizeRequest ().Width +
							   w +
							   hbox.Spacing * 4 +
							   containerPadding * 2;
			});

			image.Clicked += delegate {
				UseIncorrectMarkers = true;
				view.WorkbenchWindow.ShowNotification = false;
				RemoveMessageBar ();
			};
			okButton.Clicked += delegate {
				switch (combo.Active) {
				case 0:
					ConvertLineEndings ();
					view.WorkbenchWindow.ShowNotification = false;
					view.Save (fileName, view.SourceEncoding);
					break;
				case 1:
					FileRegistry.ConvertLineEndingsInAllFiles ();
					break;
				case 2:
					UseIncorrectMarkers = true;
					view.WorkbenchWindow.ShowNotification = false;
					break;
				case 3:
					FileRegistry.IgnoreLineEndingsInAllFiles ();
					break;
				}
				RemoveMessageBar ();
			};
		}
开发者ID:pabloescribanoloza,项目名称:monodevelop,代码行数:79,代码来源:SourceEditorWidget.cs


注:本文中的Gtk.ComboBox.QueueResize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。