开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
标签 (3)
master
V5.0.2
V4.8.32
V4.3.31
NodeTextBox.cs 2.88 KB
一键复制 编辑 原始数据 按行查看 历史
wxd_tony1984 提交于 2019年04月27日 19:49 +08:00 . 添加自定义TreeView控件 改变滚动条样式
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
using System.ComponentModel;
namespace ICSharpCode.WinFormsUI.Controls.NodeControls
{
public class NodeTextBox: BaseTextControl
{
private const int MinTextBoxWidth = 30;
private TextBox _textBox;
public NodeTextBox()
{
}
protected override Size CalculateEditorSize(EditorContext context)
{
if (Parent.UseColumns)
return context.Bounds.Size;
else
{
TextBox textBox = context.Editor as TextBox;
Size size = GetLabelSize(textBox.Text);
int width = Math.Max(size.Width + Font.Height, MinTextBoxWidth); // reserve a place for new typed character
return new Size(width, size.Height);
}
}
public override void KeyDown(KeyEventArgs args)
{
if (args.KeyCode == Keys.F2 && Parent.CurrentNode != null)
{
args.Handled = true;
BeginEdit();
}
}
protected override Control CreateEditor(NTreeNode node)
{
TextBox textBox = new TextBox();
textBox.TextAlign = TextAlign;
textBox.Text = GetLabel(node);
textBox.BorderStyle = BorderStyle.FixedSingle;
textBox.KeyDown += new KeyEventHandler(textBox_KeyDown);
textBox.Disposed += new EventHandler(textBox_Disposed);
textBox.TextChanged += new EventHandler(textBox_TextChanged);
_label = textBox.Text;
_textBox = textBox;
return textBox;
}
private string _label;
private void textBox_TextChanged(object sender, EventArgs e)
{
_label = _textBox.Text;
Parent.UpdateEditorBounds();
}
private void textBox_Disposed(object sender, EventArgs e)
{
_textBox.KeyDown -= new KeyEventHandler(textBox_KeyDown);
_textBox.Disposed -= new EventHandler(textBox_Disposed);
_textBox.TextChanged -= new EventHandler(textBox_TextChanged);
_textBox = null;
}
protected override void DoApplyChanges(NTreeNode node)
{
string oldLabel = GetLabel(node);
if (oldLabel != _label)
{
SetLabel(node, _label);
OnLabelChanged();
}
}
void textBox_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
EndEdit(true);
else if (e.KeyCode == Keys.Enter)
EndEdit(false);
}
public void Cut()
{
if (_textBox != null)
_textBox.Cut();
}
public void Copy()
{
if (_textBox != null)
_textBox.Copy();
}
public void Paste()
{
if (_textBox != null)
_textBox.Paste();
}
public void Delete()
{
if (_textBox != null)
{
int len = Math.Max(_textBox.SelectionLength, 1);
if (_textBox.SelectionStart < _textBox.Text.Length)
{
int start = _textBox.SelectionStart;
_textBox.Text = _textBox.Text.Remove(_textBox.SelectionStart, len);
_textBox.SelectionStart = start;
}
}
}
public event EventHandler LabelChanged;
protected void OnLabelChanged()
{
if (LabelChanged != null)
LabelChanged(this, EventArgs.Empty);
}
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

开发助手是一款面向开发人员的辅助助手,它集数据库管理(目前支持sqlserver,sqlite,mysql,postgresql),代码生成(支持从数据库生成实体映射类,数据库操作DAL中间层),数据库文档生成,代码收藏夹(支持C#,SQL,Javascrip,Html,XML,Python语法高亮),富文本编辑,插件管理等功能模块。自2015年到如今,它已经历过4个重大版本的升级,径过不断修复和完善,目前已成为一款堪称得心应手的开发辅助工具。
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/wwwpythonpw/DevelopAssistant.git
git@gitee.com:wwwpythonpw/DevelopAssistant.git
wwwpythonpw
DevelopAssistant
DevelopAssistant
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /