示例#1
0
 public TestPattern(Size size, Color Back, Color Fore, TestPatternType type, int parm1, int parm2)
     : base(size,null,Back)
 {
     m_rand = new Random();
     m_type = type;
     m_parm1 = (double)parm1;
     m_parm2 = (double)parm2;
     m_Fore = Fore;
 }
 public TestPatternButtonViewModel Set(TestPatternType type)
 {
     TestPatternType = type;
     return(this);
 }