示例#1
0
        private void EditGotoLineItem_Click(object sender, EventArgs e)
        {
            GotoLineForm form = new GotoLineForm(scintillaControl.LineCount);

            if (form.ShowDialog(this) == DialogResult.OK)
            {
                ShowLine(form.Selection);
            }
        }
示例#2
0
		private void EditGotoLineItem_Click(object sender, EventArgs e)
		{
			GotoLineForm form = new GotoLineForm(scintillaControl.LineCount);
			if (form.ShowDialog(this) == DialogResult.OK)
			{
				ShowLine(form.Selection);
			}
		}