Esempio n. 1
0
        private static void ActionButtonBox(RootWindow root, out Button showTravelButton, out Button showBuyButton, out Button showSellButton, out Button showStoryButton, out Button showRetireButton, out Button showQuitButton)
        {
            var actionBox = new DisplayPlanetList(root)
            {
                Text = "Actions", Width = 43, Height = 10, Top = 14, Left = 104, Border = BorderStyle.Thick
            };

            showTravelButton = new Button(actionBox)
            {
                Text = "Travel", Width = 10, Height = 3, Top = 1, Left = 4, Visible = true
            };
            showBuyButton = new Button(actionBox)
            {
                Text = "Buy", Width = 10, Height = 3, Top = 1, Left = 16, Visible = true
            };
            showSellButton = new Button(actionBox)
            {
                Text = "Sell", Width = 10, Height = 3, Top = 1, Left = 28, Visible = true
            };
            showStoryButton = new Button(actionBox)
            {
                Text = "Story Info", Width = 10, Height = 3, Top = 5, Left = 4, Visible = true
            };
            showRetireButton = new Button(actionBox)
            {
                Text = "Retire", Width = 10, Height = 3, Top = 5, Left = 16, Visible = true
            };
            showQuitButton = new Button(actionBox)
            {
                Text = "Quit", Width = 10, Height = 3, Top = 5, Left = 28, Visible = true
            };
        }
Esempio n. 2
0
 private static void PlanetListBox(RootWindow root, out DisplayPlanetList displayPlanetList, out ListBox planetList)
 {
     displayPlanetList = new DisplayPlanetList(root)
     {
         Text = "Planet List", Width = 43, Height = 10, Top = 27, Left = 104, Border = BorderStyle.Thin, Visible = true
     };
     planetList = new ListBox(displayPlanetList)
     {
         Top = 1, Left = 0, Width = 41, Height = 8, Border = BorderStyle.Thin, Visible = false
     };
 }