C# 如何设置 richTextBoxr的边距
附件 http://files.cnblogs.com/xe2011/richTextBox_EM_SETRECT.rar
- using System.Runtime.InteropServices;
- public struct Rect
- {
- public int Left;
- public int Top;
- public int Right;
- public int Bottom;
- }
- [DllImport("user32.dll")]
- private static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, ref Rect lParam);//
- private const int EM_GETRECT = 0x00b2;
- private const int EM_SETRECT = 0x00b3;
- public Rect RichTextBoxMargin
- {
- get
- {
- Rect rect = new Rect();
- SendMessage(richTextBox1.Handle, EM_GETRECT, IntPtr.Zero, ref rect);
- rect.Left += ;
- rect.Top += ;
- rect.Right = + richTextBox1.ClientSize.Width - rect.Right;
- rect.Bottom = richTextBox1.ClientSize.Height - rect.Bottom;
- return rect;
- }
- set
- {
- Rect rect;
- rect.Left = richTextBox1.ClientRectangle.Left + value.Left;
- rect.Top = richTextBox1.ClientRectangle.Top + value.Top;
- rect.Right = richTextBox1.ClientRectangle.Right - value.Right;
- rect.Bottom = richTextBox1.ClientRectangle.Bottom - value.Bottom;
- SendMessage(richTextBox1.Handle, EM_SETRECT, IntPtr.Zero, ref rect);
- }
- }
- //设置
- private void button1_Click(object sender, EventArgs e)
- {
- Rect rect;
- rect.Left = ;
- rect.Top = ;
- rect.Right = ;
- rect.Bottom = ;
- RichTextBoxMargin = rect;
- }
- //获得
- private void button2_Click(object sender, EventArgs e)
- {
- Rect rect;
- rect = RichTextBoxMargin;
- MessageBox.Show( string.Format("Left = {0} top={1} right={2} bottom={3}",rect.Left,rect.Top,rect.Right,rect.Bottom));
- }
放在自定义的类里面
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Runtime.InteropServices;
- namespace System.Windows.Forms
- {
- public class CustomRichTextBox:RichTextBox
- {
- public CustomRichTextBox()
- {
- richTextBox1=this;
- }
- private System.Windows.Forms.RichTextBox richTextBox1;
- private struct Rect
- {
- public int Left;
- public int Top;
- public int Right;
- public int Bottom;
- }
- [DllImport("user32.dll")]
- private static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, ref Rect lParam);
- private const int EM_GETRECT = 0x00b2;
- private const int EM_SETRECT = 0x00b3;
- /// <summary>
- /// 当没设置的时候结果多出了L T R +2
- /// </summary>
- private Rect RichTextBoxMargin
- {
- get
- {
- Rect rect = new Rect();
- SendMessage(richTextBox1.Handle, EM_GETRECT, IntPtr.Zero, ref rect);
- rect.Left += ;
- rect.Top += ;
- rect.Right = + richTextBox1.DisplayRectangle.Width - rect.Right;
- rect.Bottom = richTextBox1.DisplayRectangle.Height - rect.Bottom;
- return rect;
- }
- set
- {
- Rect rect;
- rect.Left = richTextBox1.ClientRectangle.Left + value.Left;
- rect.Top = richTextBox1.ClientRectangle.Top + value.Top;
- rect.Right = richTextBox1.ClientRectangle.Right - value.Right;
- rect.Bottom = richTextBox1.ClientRectangle.Bottom - value.Bottom;
- SendMessage(richTextBox1.Handle, EM_SETRECT, IntPtr.Zero, ref rect);
- }
- }
- public int LeftMargin
- {
- get
- {
- return RichTextBoxMargin.Left;
- }
- set
- {
- Rect rect1;
- rect1 = RichTextBoxMargin;
- Rect rect;
- rect.Left = value;
- rect.Top = rect1.Top;
- rect.Right = rect1.Right;
- rect.Bottom = rect1.Bottom;
- RichTextBoxMargin = rect;
- }
- }
- public int RightMargin
- {
- get
- {
- return RichTextBoxMargin.Right;
- }
- set
- {
- Rect rect1;
- rect1 = RichTextBoxMargin;
- Rect rect;
- rect.Left = rect1.Left;
- rect.Top = rect1.Top;
- rect.Right = value;
- rect.Bottom = rect1.Bottom;
- RichTextBoxMargin = rect;
- }
- }
- public int TopMargin
- {
- get
- {
- return RichTextBoxMargin.Top;
- }
- set
- {
- Rect rect1;
- rect1 = RichTextBoxMargin;
- Rect rect;
- rect.Left = rect1.Left;
- rect.Top = value;
- rect.Right = rect1.Right;
- rect.Bottom = rect1.Bottom;
- RichTextBoxMargin = rect;
- }
- }
- public int BottomMargin
- {
- get
- {
- return RichTextBoxMargin.Bottom;
- }
- set
- {
- Rect rect1;
- rect1 = RichTextBoxMargin;
- Rect rect;
- rect.Left = rect1.Left;
- rect.Top = rect1.Top;
- rect.Right = rect1.Right;
- rect.Bottom = value;
- RichTextBoxMargin = rect;
- }
- }
- }
- }
CustomRichTextBox.cs
使用
- private void button1_Click(object sender, EventArgs e)
- {
- customRichTextBox1.LeftMargin = ;
- customRichTextBox1.TopMargin = ;
- customRichTextBox1.RightMargin = ;
- customRichTextBox1.BottomMargin = ;
- }
- private void button2_Click(object sender, EventArgs e)
- {
- Text = string.Format("Left={0} Right={1} Top={2} Bottom={3}",
- customRichTextBox1.LeftMargin,
- customRichTextBox1.TopMargin,
- customRichTextBox1.RightMargin,
- customRichTextBox1.BottomMargin);
- }
C# 如何设置 richTextBoxr的边距的更多相关文章
- iOS 设置UILabel 的内边距
iOS 设置UILabel 的内边距 - (void)drawTextInRect:(CGRect)rect { UIEdgeInsets insets = {, , , }; [super draw ...
- Java 设置Word页边距、页面大小、页面方向、页面边框
本文将通过Java示例介绍如何设置Word页边距(包括上.下.左.右).页面大小(可设置Letter/A3/A4/A5/A6/B4/B5/B6/Envelop DL/Half Letter/Lette ...
- Epplus 设置excel 页边距 及多文件合并
1:使用epplus合并多个excel文件到同一excel的不同sheet页中 private static bool MergeExcel(string _stFilePath, List<s ...
- label_设置行距、字距及计算含有行间距的label高度
// // ViewController.m // CNBlogs // // Created by PXJ on 16/5/27. // Copyright © 2016年 PXJ. All ...
- 设置textfield 文字左边距
默认情况下,当向textField输入文字时,文字会紧贴在textField左边框上.我们可以通过设置textField的leftView,设置一个只有宽度的leftView.这样还不够,因为默认le ...
- POI设置Word页边距
参考资料:http://stackoverflow.com/questions/17787176/spacing-and-margin-settings-in-word-document-using- ...
- textField设置输入文字距左边的距离
1.设置tetxField的内边距 [self.yourTextField setValue:[NSNumber numberWithInt:5] forKey:@"paddingTop&q ...
- [iOS]UIButton内、外边距设置
- (void)viewDidLoad { [super viewDidLoad]; /* UIButton设置对应的边距image跟title的边距属性 ...
- 探究负边距(negative margin)原理
W3C规范在介绍margin时有这样一句话: Negative values for margin properties are allowed, but there may be implement ...
随机推荐
- PDF判断打印是A4还是B5
打印材料通畅就是这样两个规格,之前经常受其困扰,B5规格达成A4会显得字很大,当然本身A4就跟大:如果是A4打成B5字很小的: 其实,判断依据就是Adobe reader里面的,当鼠标滑向左下角的时候 ...
- NULL, nil, Nil详解
原文地址:http://blog.csdn.net/wzzvictory/article/details/18413519 感谢原作者 作者:wangzz 原文地址:http://blog.cs ...
- UIStackView 简单使用
UIStackView提供了一个高效的接口用于平铺一行或一列的视图组合.对于嵌入到StackView的视图,你不用再添加自动布局的约束了.Stack View管理这些子视图的布局,并帮你自动布局约束. ...
- PHP程序的一次重构记录
项目和新需求: 我们有一个PHP写的webmail系统,有一个mail_list.php用于展现用户的邮件列表这个页面支持folderId参数(因为邮件是存在不同的文件夹下的)由于邮件太多所以支持翻页 ...
- 数据结构练习 02-线性结构2. Reversing Linked List (25)
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elem ...
- 3G 2G GPRS 1G的概念
3G, 第三代移动通信技术(3rd-generation,3G),是指支持高速数据传输的蜂窝移动通讯技术.3G服务 能够同时传送声音及数据信息,速率一般在几百kbps以上.3G标准:它们分别是WCDM ...
- Gartner 如何看 RASP 和 WAF?
在这个计算机网络飞速发展的网络时代里,新兴的网络威胁正在不断「侵蚀」着的应用程序和核心数据的安全,各种繁杂的防护手段也随之接踵而来.众所周知,Gartner 是全球最具权威的 IT 研究与顾问咨询公司 ...
- android 对象传输及parcel机制
在开发中不少要用到Activity直接传输对象,下面我们来看看,其实跟java里面差不多 自定义对象的传递:通过intent传递自定义对象的方法有两个 第一是实现Serialization接口: ...
- Eclipse can't install updates
trying to update eclipse but after downloading updates i always get an error dialog saying: An error ...
- 《Spark大数据处理:技术、应用与性能优化 》
基本信息 作者: 高彦杰 丛书名:大数据技术丛书 出版社:机械工业出版社 ISBN:9787111483861 上架时间:2014-11-5 出版日期:2014 年11月 开本:16开 页码:255 ...