示例#1
0
        public FFRKViewDatabase()
        {
            InitializeComponent();
            mPanels = new List<UserControl>();

            ItemStatsPanel edit_panel = new ItemStatsPanel();
            edit_panel.Dock = DockStyle.Fill;
            edit_panel.Location = new Point(0, 0);
            this.groupBox1.Controls.Add(edit_panel);
            mPanels.Add(edit_panel);
            this.comboBox1.Items.Add("View equipment and stats");

            MissingItemsPanel missing_panel = new MissingItemsPanel();
            missing_panel.Dock = DockStyle.Fill;
            missing_panel.Location = new Point(0, 0);
            this.groupBox1.Controls.Add(missing_panel);
            mPanels.Add(missing_panel);
            this.comboBox1.Items.Add("Add missing items or submit fixes for incorrect items");

            comboBox1.SelectedIndex = 0;
        }
示例#2
0
        public FFRKViewDatabase()
        {
            InitializeComponent();
            mPanels = new List <UserControl>();

            ItemStatsPanel edit_panel = new ItemStatsPanel();

            edit_panel.Dock     = DockStyle.Fill;
            edit_panel.Location = new Point(0, 0);
            this.groupBox1.Controls.Add(edit_panel);
            mPanels.Add(edit_panel);
            this.comboBox1.Items.Add("View equipment and stats");

            MissingItemsPanel missing_panel = new MissingItemsPanel();

            missing_panel.Dock     = DockStyle.Fill;
            missing_panel.Location = new Point(0, 0);
            this.groupBox1.Controls.Add(missing_panel);
            mPanels.Add(missing_panel);
            this.comboBox1.Items.Add("Add missing items or submit fixes for incorrect items");

            comboBox1.SelectedIndex = 0;
        }