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


C# Widget.Destroy方法代码示例

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


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

示例1: addPage

		private void addPage (Widget widget, string label) {
		HBox hBox = new HBox ();
		hBox.Add(new Label (label));
		Button button = new Button (new Image (Stock.Cancel, IconSize.Button ));
		hBox.Add (button);
		hBox.ShowAll();
		notebook1.AppendPage (widget, new Label(label));

		button.Clicked += delegate {
			widget.Destroy ();
		};

		}
开发者ID:bwn13,项目名称:ad,代码行数:13,代码来源:MainWindow.cs

示例2: AddPage

        private void AddPage(Widget widget)
        {
            HBox hbox = new HBox();
            hbox.PackStart(new Label("Label"));
            Button closeButton = new Button("X");
            closeButton.Relief = ReliefStyle.None;
            closeButton.FocusOnClick = false;
            closeButton.Clicked += delegate {
                hbox.Destroy();
                widget.Destroy();
            };

            hbox.PackStart(closeButton);
            hbox.ShowAll();
            notebook.AppendPage(widget, hbox);
            notebook.ShowAll();
        }
开发者ID:smartinz,项目名称:randomhacking,代码行数:17,代码来源:MainWindow.cs

示例3: TableRemoveRow

		static void TableRemoveRow (Table table, uint row, Widget column1, Widget column2, bool destroy)
		{
			uint rows = table.NRows;
			
			foreach (var child in table.Children) {
				var tr = (Table.TableChild) table[child];
				uint bottom = tr.BottomAttach;
				uint top = tr.TopAttach;
				
				if (top >= row && top < rows) {
					tr.BottomAttach = bottom - 1;
					tr.TopAttach = top - 1;
				}
			}
			
			if (column1 != null) {
				table.Remove (column1);
				if (destroy)
					column1.Destroy ();
			}
			
			if (column2 != null) {
				table.Remove (column2);
				if (destroy)
					column2.Destroy ();
			}
			
			table.NRows--;
		}
开发者ID:nieve,项目名称:monodevelop,代码行数:29,代码来源:FindInFilesDialog.cs

示例4: DestroyPanel

 void DestroyPanel(Widget panel)
 {
     if (panel is IPanel) {
         (panel as IPanel).BackEvent -= BackClicked;
     }
     panel.Destroy ();
     panel.Dispose ();
     System.GC.Collect ();
 }
开发者ID:GNOME,项目名称:longomatch,代码行数:9,代码来源:MainWindow.cs

示例5: RemoveFromTable

		void RemoveFromTable (Widget widget)
		{
			configurationTable.Remove (widget);
			widget.Destroy ();
		}
开发者ID:sushihangover,项目名称:monodevelop,代码行数:5,代码来源:GtkAspNetProjectTemplateWizardPageWidget.cs


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