当前位置:   article > 正文

devexpress html编辑器,DevExpress 通用控件系列:TextEdit(2)

devexpress.utils编辑工具

TextEdit类

单行文本编辑器。

1)设置默认值:

效果图:

d9e96e630ca4c5318fbb37f076fbb8cb.png

/*设置编辑器的值*/

this.textEdit1.Text = @"晨曦czb";

/*设置编辑框中显示的文本*/

this.textEdit1.EditValue = @"晨曦czb";

2)提示标题及内容:

效果图:

76aa6e7e4b38c5faae167b3925f965a1.png

/*提示内容*/

this.textEdit1.ToolTip = @"晨曦czb";

/*提示标题*/

this.textEdit1.ToolTipTitle = @"提示";

/*当鼠标指针位于控件上时是否显示工具提示*/

this.textEdit1.ShowToolTips = true;

3)水平对齐方式和边框样式

效果图:

9b94861217ad3c640712ed52b7032cea.png

/*文本的水平对齐方式*/

this.textEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

/*编辑器的边框样式*/

this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;

4)编辑器中显示自定义图像

效果图:

81a069b0bef286ecd5d194f435424974.png

/*在编辑器中显示自定义图像*/

this.textEdit1.Properties.ContextImage = global::WindowsFormsApplication1.Properties.Resources.editname_32x32;

/*在编辑器中显示图像的对齐方式*/

this.textEdit1.Properties.ContextImageAlignment = DevExpress.XtraEditors.ContextImageAlignment.Far;

5)禁止右键(有好的办法,请推荐下,谢谢)

效果图:

a2eec63c2678018bf1b4549d3039f05a.png

/*禁止右键快捷键*/

this.textEdit1.ContextMenuStrip = new ContextMenuStrip();

----其余功能持续研究中

标签:控件,效果图,DevExpress,TextEdit,编辑器,textEdit1,XtraEditors,Properties

来源: https://blog.csdn.net/m0_37688683/article/details/94620327

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/230420
推荐阅读
相关标签
  

闽ICP备14008679号