コード例 #1
0
 protected override void CreateObjects()
 {
     base.CreateObjects();
     this.m_Value = new ValueDouble();
     base.AddSubClass(this.Value);
     this.m_Timer = new Timer();
 }
コード例 #2
0
ファイル: PercentItem.cs プロジェクト: fxxxysh/toolkit
 protected override void CreateObjects()
 {
     base.CreateObjects();
     this.m_Value = new ValueDouble();
     base.AddSubClass(this.Value);
     this.Value.Changing += this.OnValueBeforeChange;
     this.Value.Changed  += this.OnValueChanged;
 }