private void iniForm()
        {
            InitializeComponent();

            this.iniComboBox();

            sourceCodeTextArea = new CodeEditorTextArea(this, searchBoxTxt, searchBoxPanel);
            sourceCodePanel.Controls.Add(sourceCodeTextArea);

            this.setProjectType();

            this.MinimumSize = new Size(this.Width - 250, this.Height);
        }
Beispiel #2
0
        public FixView(int fixId, BugFixList fixList)
        {
            InitializeComponent();

            this.fixId   = fixId;
            this.fixList = fixList;

            sourceCodeTextArea = new CodeEditorTextArea(this, searchBoxTxt, searchBoxPanel);
            sourceCodePanel.Controls.Add(sourceCodeTextArea);

            loadFixDetails();
            loadButtonsByPrivileges();

            this.MinimumSize = new Size(this.Width - 250, this.Height);
        }
Beispiel #3
0
        public BugView(int bugId, BugList bugListRef)
        {
            InitializeComponent();

            this.bugId      = bugId;
            this.bugListRef = bugListRef;

            sourceCodeTextArea = new CodeEditorTextArea(this, searchBoxTxt, searchBoxPanel);
            sourceCodePanel.Controls.Add(sourceCodeTextArea);

            loadBugDetails();

            loadButtonsByPrivileges();

            this.MinimumSize = new Size(this.Width - 250, this.Height);
        }
Beispiel #4
0
 private void iniCodeEditor()
 {
     sourceCodeTextArea = new CodeEditorTextArea(this, searchBoxTxt, searchBoxPanel);
     sourceCodePanel.Controls.Add(sourceCodeTextArea);
 }