Beispiel #1
0
 public Tool(string strName, ToolType type, int x, int y, Bitmap bm, Options.BoolOptionName option)
 {
     Name         = strName;
     Type         = type;
     X            = x;
     Y            = y;
     Show         = true;
     Enabled      = true;
     ButtonBitmap = bm;
     Hilight      = Options.Get(option);
     OptionName   = option;
 }
Beispiel #2
0
 public Tool(string strName, ToolType type, int x, int y, Bitmap bm, Options.BoolOptionName option)
 {
     Name = strName;
     Type = type;
     X = x;
     Y = y;
     Show = true;
     Enabled = true;
     ButtonBitmap = bm;
     Hilight = Options.Get(option);
     OptionName = option;
 }