本文整理汇总了C#中Gtk.Button.SetAlignment方法的典型用法代码示例。如果您正苦于以下问题:C# Button.SetAlignment方法的具体用法?C# Button.SetAlignment怎么用?C# Button.SetAlignment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gtk.Button
的用法示例。
在下文中一共展示了Button.SetAlignment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetSelectedFix
public void GetSelectedFix(IEnumerable<MonoDevelop.Stereo.Refactoring.QuickFixes.IRefactorTask> tasks)
{
if (Children.Contains(vTaskBox))
this.Remove(vTaskBox);
global::Stetic.Gui.Initialize (this);
// Container child MonoDevelop.Stereo.Gui.QuickFixesSelection.Gtk.Container+ContainerChild
this.vTaskBox = new global::Gtk.VBox ();
this.vTaskBox.Name = "vTaskBox";
this.vTaskBox.Spacing = 0;
tasksCache.Clear();
foreach (IRefactorTask task in tasks) {
tasksCache.Add(task.Title, task);
var btn = new Button ();
btn.CanFocus = true;
btn.UseUnderline = true;
btn.Label = task.Title;
btn.SetAlignment(0.00f, 0.50f);
this.vTaskBox.Add (btn);
btn.Clicked += (sender, e) => {
Selected = tasksCache[((Button)sender).Label];
Hide (); };
global::Gtk.Box.BoxChild w = ((global::Gtk.Box.BoxChild)(this.vTaskBox [btn]));
w.Position = 0;
w.Expand = false;
w.Fill = false;
}
this.Add (this.vTaskBox);
if ((this.Child != null)) {
this.Child.ShowAll ();
}
Selected = null;
this.Show();
}