コード例 #1
0
ファイル: ShapeBase.cs プロジェクト: ProfPorkins/GPStudio
        /// <summary>
        /// Summarizes the initialization used by the constructors
        /// </summary>
        private void Init()
        {
            rectangle = new Rectangle(0, 0, 100, 70);

            childNodes = new ShapeCollection();
            SetBrush();
        }
コード例 #2
0
        /// <summary>
        /// Summarizes the initialization used by the constructors
        /// </summary>
        private void Init()
        {
            rectangle = new Rectangle(0,0,100,70);

            childNodes = new ShapeCollection();
            SetBrush();
        }
コード例 #3
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public GraphAbstract()
 {
     connections = new ConnectionCollection();
     shapes      = new ShapeCollection();
 }
コード例 #4
0
 /// <summary>
 /// Default ctor
 /// </summary>
 public GraphAbstract()
 {
     connections = new ConnectionCollection();
     shapes = new ShapeCollection();
 }