コード例 #1
0
ファイル: G2DPanel.cs プロジェクト: ARLM-Attic/goblin-xna
        /// <summary>
        /// Creates a panel to hold other 2D UI components.
        /// </summary>
        public G2DPanel()
            : base()
        {
            children = new List <G2DComponent>();
            border   = GoblinEnums.BorderFactory.EmptyBorder;
            name     = "G2DPanel";
            title    = "";

            etchWhiteColor = Color.White;
            etchBlackColor = Color.Black;
        }
コード例 #2
0
ファイル: G2DPanel.cs プロジェクト: NinjaSteph/SureShot
        /// <summary>
        /// Creates a panel to hold other 2D UI components.
        /// </summary>
        public G2DPanel() 
            : base()
        {
            children = new List<G2DComponent>();
            border = GoblinEnums.BorderFactory.EmptyBorder;
            name = "G2DPanel";
            title = "";

            etchWhiteColor = Color.White;
            etchBlackColor = Color.Black;
        }