TextEdit类
单行文本编辑器。
1)设置默认值:
效果图:
/*设置编辑器的值*/
this.textEdit1.Text = @"晨曦czb";
/*设置编辑框中显示的文本*/
this.textEdit1.EditValue = @"晨曦czb";
2)提示标题及内容:
效果图:
/*提示内容*/
this.textEdit1.ToolTip = @"晨曦czb";
/*提示标题*/
this.textEdit1.ToolTipTitle = @"提示";
/*当鼠标指针位于控件上时是否显示工具提示*/
this.textEdit1.ShowToolTips = true;
3)水平对齐方式和边框样式
效果图:
/*文本的水平对齐方式*/
this.textEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
/*编辑器的边框样式*/
this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
4)编辑器中显示自定义图像
效果图:
/*在编辑器中显示自定义图像*/
this.textEdit1.Properties.ContextImage = global::WindowsFormsApplication1.Properties.Resources.editname_32x32;
/*在编辑器中显示图像的对齐方式*/
this.textEdit1.Properties.ContextImageAlignment = DevExpress.XtraEditors.ContextImageAlignment.Far;
5)禁止右键(有好的办法,请推荐下,谢谢)
效果图:
/*禁止右键快捷键*/
this.textEdit1.ContextMenuStrip = new ContextMenuStrip();
----其余功能持续研究中