FNewModule.form
上传用户:hz1717
上传日期:2014-12-23
资源大小:7560k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

C/C++

  1. # Gambas Form File 1.0
  2. { FNewModule Form
  3.   Move(304,161,512,465)
  4.   Text = ("Add module")
  5.   Icon = Picture["img/16/module.png"]
  6.   Border = Window.Fixed
  7.   { tabAdd TabStrip
  8.     Move(8,8,496,416)
  9.     Count = 2
  10.     Index = 0
  11.     Text = ("New")
  12.     { txtFile TextBox
  13.       Move(16,40,408,24)
  14.       Font = Font["12"]
  15.       Text = ("")
  16.     }
  17.     { chkStartup CheckBox
  18.       Move(16,112,240,16)
  19.       Text = ("&Startup module")
  20.     }
  21.     { chkInit CheckBox
  22.       Move(16,136,240,16)
  23.       Text = ("Static &constructor")
  24.     }
  25.     { chkExit CheckBox
  26.       Move(16,160,240,16)
  27.       Text = ("Static &destructor")
  28.     }
  29.     { Image1 PictureBox
  30.       Move(440,16,48,48)
  31.       Picture = Picture["img/32/module.png"]
  32.       Stretch = True
  33.       Alignment = Align.Center
  34.     }
  35.     { Label1 Label
  36.       Move(8,8,176,24)
  37.       Font = Font["Bold"]
  38.       Text = ("Name")
  39.     }
  40.     { Label2 Label
  41.       Move(8,80,176,24)
  42.       Font = Font["Bold"]
  43.       Text = ("Options")
  44.     }
  45.     Index = 1
  46.     Text = ("Existing")
  47.     Index = 0
  48.   }
  49.   { btnOK Button
  50.     Move(320,432,88,24)
  51.     Text = ("OK")
  52.     Default = True
  53.   }
  54.   { btnCancel Button
  55.     Move(416,432,88,24)
  56.     Text = ("Cancel")
  57.     Cancel = True
  58.   }
  59. }