コード例 #1
0
ファイル: BuilderDialog.cs プロジェクト: iainlane/f-spot
 protected BuilderDialog(Builder builder, string dialogName)
     : base(builder.GetRawObject (dialogName))
 {
     builder.Autoconnect (this);
 }
コード例 #2
0
ファイル: BuilderWindow.cs プロジェクト: Yetangitu/f-spot
 protected BuilderWindow(Builder builder, string widgetName)
     : base(builder.GetRawObject (widgetName))
 {
     builder.Autoconnect (this);
 }
コード例 #3
0
 public override Widget ConfigurationWidget()
 {
     builder = new GtkBeans.Builder (null, "color_editor_prefs_window.ui", null);
     builder.Autoconnect (this);
     AttachInterface ();
     return new VBox (builder.GetRawObject ("color_editor_prefs"));
 }