コード例 #1
0
        void _AddErrorMessage(int line, int column, string path, string message)
        {
            var eitem = new ErrorListBoxItem {
                Line = line, Column = column, Message = message, Path = path
            };

            errorListBox.Items.Add(eitem);
            this.Show();
            errorListBox.Focus();
        }
コード例 #2
0
ファイル: ErrorContentBox.cs プロジェクト: trietptm/retoolkit
 void _AddErrorMessage(int line, int column, string path, string message)
 {
     var eitem = new ErrorListBoxItem { Line = line, Column = column, Message = message, Path = path };
       errorListBox.Items.Add(eitem);
       this.Show();
       errorListBox.Focus();
 }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: trietptm/retoolkit
 private void OnErrorSelected(ErrorListBoxItem error)
 {
     m_windowMgr.GotoFile(error.Path, error.Line, error.Column);
 }