-
大小: 21KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-29
- 语言: C#
- 标签: RichTextBox Autocomplete 自动完成 智能输入
资源简介
c# winform RichTextBox Autocomplete 自动完成 智能输入
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Intellisense
{
public partial class MainForm : Form
{
public int CurrentTagStart = 0;
public string intellisenseBuffer = ““;
public bool PassInputToTextbox = true;
public MainForm()
{
InitializeComponent();
}
private void rtbInput_PreviewKeyDown(object sender PreviewKeyDownEventArgs e)
{
if (e.KeyCode == Keys.OemPeriod && e.Shift == false)
{
CurrentTagStart = rtbInput.Selectionstart;
Point p = rtbInput.GetPositionFromCharIndex(rtbInput.Selectionstart);
p.Y += (int)rtbInput.Font.GetHeight()*2;
Console.WriteLine((int)rtbInput.Font.GetHeight());
lbIntelli.Location = p;
lbIntelli.Show();
ActiveControl = lbIntelli;
}
}
private void lbIntelli_KeyUp(object sender KeyEventArgs e)
{
object ObjToSelect = new object();
if (e.KeyCode != Keys.OemPeriod)
if (e.KeyCode != Keys.Back)
{
bool startswith = false;
intellisenseBuffer += e.KeyCode;
foreach (object obj in lbIntelli.Items)
{
string str = obj.ToString();
if (str != ““)
{
startswith = str.StartsWith(intellisenseBuffer true null);
if (startswith == true)
{
ObjToSelect = obj;
break;
}
}
}
if (startswith == false)
{
intellisenseBuffer = ““;
lbIntelli.Hide();
}
lbIntelli.SelectedItem = ObjToSelect;
}
if (e.KeyCode == Keys.Back) { rtbInput.Text.Remove(rtbInput.Selectionstart-11); }
if (e.KeyCode == Keys.Return)
{
rtbInput.Select(CurrentTagStart+1 rtbInput.Selectionstart);
rtbInput.SelectedText = lbIntelli.SelectedItem.ToString();
}
}
private void lbIntelli_KeyPress(object sender KeyPressEventArgs e)
{
rtbInput.SelectedText = e.KeyChar.ToString();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 929 2006-02-24 11:45 Intellisense\Intellisense.sln
文件 15360 2006-02-24 11:45 Intellisense\Intellisense.suo
目录 0 2006-02-24 11:44 Intellisense\Intellisense\
目录 0 2006-02-24 11:44 Intellisense\Intellisense\bin\
目录 0 2006-02-24 11:44 Intellisense\Intellisense\bin\Debug\
文件 24576 2006-02-24 11:42 Intellisense\Intellisense\bin\Debug\Intellisense.exe
文件 5632 2005-09-23 06:56 Intellisense\Intellisense\bin\Debug\Intellisense.vshost.exe
目录 0 2006-02-24 11:44 Intellisense\Intellisense\bin\Release\
文件 2758 2006-02-24 11:44 Intellisense\Intellisense\Form1.cs
文件 4890 2006-02-24 10:50 Intellisense\Intellisense\Form1.Designer.cs
文件 5814 2006-02-24 10:50 Intellisense\Intellisense\Form1.resx
文件 3231 2006-02-24 11:45 Intellisense\Intellisense\Intellisense.csproj
文件 482 2006-02-24 10:19 Intellisense\Intellisense\Program.cs
目录 0 2006-02-24 11:44 Intellisense\Intellisense\Properties\
文件 1272 2006-02-24 10:17 Intellisense\Intellisense\Properties\AssemblyInfo.cs
文件 2851 2006-02-24 10:18 Intellisense\Intellisense\Properties\Resources.Designer.cs
文件 5612 2006-02-24 10:17 Intellisense\Intellisense\Properties\Resources.resx
文件 1095 2006-02-24 10:18 Intellisense\Intellisense\Properties\Settings.Designer.cs
文件 249 2006-02-24 10:17 Intellisense\Intellisense\Properties\Settings.settings
- 上一篇:简单的c#用户登录程序
- 下一篇:MVVM模式学习的
相关资源
- C# 文本编辑器之查找和替换功能实现
- C#自定义控件---实现带行数和标尺的
- C#textbox下拉提示 textbox智能提示 te
- Lx-C#自定义控件---实现带行数和标尺的
- 完美实现ComBox多列下拉框+自动完成
- WPF richtextBox高亮显示指定文本.rar
- WPF自制RichTextBox文本编辑器
- jquery.autocomplete插件修改扩展功能
- C# 在richtextbox中生成表格
- 跨线程日志输出到RichTextBox类库源代码
- C# RichTextBox 输入内容转自定义样式图
- winform 自动完成(智能提示autocomplet
- C# RichTextBox 常用操作(可插入图片/更
- richTextBox文本编辑框扩展
- C# winform 输入提示(自动完成)
- C# textbox 自动完成(智能提示)
- wpf 自动完成文本框(autocomplete)
- C# winform RichTextBox支持GIF
- DataGridView中的RichTextBox单元格
- 给RichTextBox添加行号,且没有误差
- 带行数和标尺的RichTextBox
评论
共有 条评论