附件 http://files.cnblogs.com/xe2011/richTextBox_EM_SETRECT.rar

  1. using System.Runtime.InteropServices;
  2.  
  3. public struct Rect
  4. {
  5. public int Left;
  6. public int Top;
  7. public int Right;
  8. public int Bottom;
  9. }
  10.  
  11. [DllImport("user32.dll")]
  12. private static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, ref Rect lParam);//
  13.  
  14. private const int EM_GETRECT = 0x00b2;
  15. private const int EM_SETRECT = 0x00b3;
  16.  
  17. public Rect RichTextBoxMargin
  18. {
  19. get
  20. {
  21. Rect rect = new Rect();
  22. SendMessage(richTextBox1.Handle, EM_GETRECT, IntPtr.Zero, ref rect);
  23. rect.Left += ;
  24. rect.Top += ;
  25. rect.Right = + richTextBox1.ClientSize.Width - rect.Right;
  26. rect.Bottom = richTextBox1.ClientSize.Height - rect.Bottom;
  27. return rect;
  28. }
  29. set
  30. {
  31. Rect rect;
  32. rect.Left = richTextBox1.ClientRectangle.Left + value.Left;
  33. rect.Top = richTextBox1.ClientRectangle.Top + value.Top;
  34. rect.Right = richTextBox1.ClientRectangle.Right - value.Right;
  35. rect.Bottom = richTextBox1.ClientRectangle.Bottom - value.Bottom;
  36.  
  37. SendMessage(richTextBox1.Handle, EM_SETRECT, IntPtr.Zero, ref rect);
  38. }
  39.  
  40. }
  41.  
  42. //设置
  43. private void button1_Click(object sender, EventArgs e)
  44. {
  45. Rect rect;
  46. rect.Left = ;
  47. rect.Top = ;
  48. rect.Right = ;
  49. rect.Bottom = ;
  50.  
  51. RichTextBoxMargin = rect;
  52. }
  53.  
  54. //获得
  55. private void button2_Click(object sender, EventArgs e)
  56. {
  57. Rect rect;
  58. rect = RichTextBoxMargin;
  59.  
  60. MessageBox.Show( string.Format("Left = {0} top={1} right={2} bottom={3}",rect.Left,rect.Top,rect.Right,rect.Bottom));
  61. }

放在自定义的类里面

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.InteropServices;
  6.  
  7. namespace System.Windows.Forms
  8. {
  9. public class CustomRichTextBox:RichTextBox
  10. {
  11. public CustomRichTextBox()
  12. {
  13. richTextBox1=this;
  14. }
  15. private System.Windows.Forms.RichTextBox richTextBox1;
  16.  
  17. private struct Rect
  18. {
  19. public int Left;
  20. public int Top;
  21. public int Right;
  22. public int Bottom;
  23. }
  24.  
  25. [DllImport("user32.dll")]
  26. private static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, ref Rect lParam);
  27.  
  28. private const int EM_GETRECT = 0x00b2;
  29. private const int EM_SETRECT = 0x00b3;
  30.  
  31. /// <summary>
  32. /// 当没设置的时候结果多出了L T R +2
  33. /// </summary>
  34. private Rect RichTextBoxMargin
  35. {
  36. get
  37. {
  38. Rect rect = new Rect();
  39. SendMessage(richTextBox1.Handle, EM_GETRECT, IntPtr.Zero, ref rect);
  40. rect.Left += ;
  41. rect.Top += ;
  42. rect.Right = + richTextBox1.DisplayRectangle.Width - rect.Right;
  43. rect.Bottom = richTextBox1.DisplayRectangle.Height - rect.Bottom;
  44. return rect;
  45. }
  46. set
  47. {
  48. Rect rect;
  49. rect.Left = richTextBox1.ClientRectangle.Left + value.Left;
  50. rect.Top = richTextBox1.ClientRectangle.Top + value.Top;
  51. rect.Right = richTextBox1.ClientRectangle.Right - value.Right;
  52. rect.Bottom = richTextBox1.ClientRectangle.Bottom - value.Bottom;
  53.  
  54. SendMessage(richTextBox1.Handle, EM_SETRECT, IntPtr.Zero, ref rect);
  55. }
  56.  
  57. }
  58.  
  59. public int LeftMargin
  60. {
  61. get
  62. {
  63. return RichTextBoxMargin.Left;
  64. }
  65. set
  66. {
  67. Rect rect1;
  68. rect1 = RichTextBoxMargin;
  69.  
  70. Rect rect;
  71. rect.Left = value;
  72. rect.Top = rect1.Top;
  73. rect.Right = rect1.Right;
  74. rect.Bottom = rect1.Bottom;
  75.  
  76. RichTextBoxMargin = rect;
  77. }
  78. }
  79.  
  80. public int RightMargin
  81. {
  82. get
  83. {
  84. return RichTextBoxMargin.Right;
  85. }
  86. set
  87. {
  88. Rect rect1;
  89. rect1 = RichTextBoxMargin;
  90.  
  91. Rect rect;
  92. rect.Left = rect1.Left;
  93. rect.Top = rect1.Top;
  94. rect.Right = value;
  95. rect.Bottom = rect1.Bottom;
  96.  
  97. RichTextBoxMargin = rect;
  98. }
  99. }
  100.  
  101. public int TopMargin
  102. {
  103. get
  104. {
  105. return RichTextBoxMargin.Top;
  106. }
  107. set
  108. {
  109. Rect rect1;
  110. rect1 = RichTextBoxMargin;
  111.  
  112. Rect rect;
  113. rect.Left = rect1.Left;
  114. rect.Top = value;
  115. rect.Right = rect1.Right;
  116. rect.Bottom = rect1.Bottom;
  117.  
  118. RichTextBoxMargin = rect;
  119. }
  120. }
  121.  
  122. public int BottomMargin
  123. {
  124. get
  125. {
  126. return RichTextBoxMargin.Bottom;
  127. }
  128. set
  129. {
  130. Rect rect1;
  131. rect1 = RichTextBoxMargin;
  132.  
  133. Rect rect;
  134. rect.Left = rect1.Left;
  135. rect.Top = rect1.Top;
  136. rect.Right = rect1.Right;
  137. rect.Bottom = value;
  138. RichTextBoxMargin = rect;
  139. }
  140. }
  141.  
  142. }
  143. }

CustomRichTextBox.cs

使用

  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3. customRichTextBox1.LeftMargin = ;
  4. customRichTextBox1.TopMargin = ;
  5. customRichTextBox1.RightMargin = ;
  6. customRichTextBox1.BottomMargin = ;
  7. }
  8.  
  9. private void button2_Click(object sender, EventArgs e)
  10. {
  11. Text = string.Format("Left={0} Right={1} Top={2} Bottom={3}",
  12. customRichTextBox1.LeftMargin,
  13. customRichTextBox1.TopMargin,
  14. customRichTextBox1.RightMargin,
  15. customRichTextBox1.BottomMargin);
  16. }

C# 如何设置 richTextBoxr的边距的更多相关文章

  1. iOS 设置UILabel 的内边距

    iOS 设置UILabel 的内边距 - (void)drawTextInRect:(CGRect)rect { UIEdgeInsets insets = {, , , }; [super draw ...

  2. Java 设置Word页边距、页面大小、页面方向、页面边框

    本文将通过Java示例介绍如何设置Word页边距(包括上.下.左.右).页面大小(可设置Letter/A3/A4/A5/A6/B4/B5/B6/Envelop DL/Half Letter/Lette ...

  3. Epplus 设置excel 页边距 及多文件合并

    1:使用epplus合并多个excel文件到同一excel的不同sheet页中 private static bool MergeExcel(string _stFilePath, List<s ...

  4. label_设置行距、字距及计算含有行间距的label高度

    // //  ViewController.m //  CNBlogs // //  Created by PXJ on 16/5/27. //  Copyright © 2016年 PXJ. All ...

  5. 设置textfield 文字左边距

    默认情况下,当向textField输入文字时,文字会紧贴在textField左边框上.我们可以通过设置textField的leftView,设置一个只有宽度的leftView.这样还不够,因为默认le ...

  6. POI设置Word页边距

    参考资料:http://stackoverflow.com/questions/17787176/spacing-and-margin-settings-in-word-document-using- ...

  7. textField设置输入文字距左边的距离

    1.设置tetxField的内边距 [self.yourTextField setValue:[NSNumber numberWithInt:5] forKey:@"paddingTop&q ...

  8. [iOS]UIButton内、外边距设置

    - (void)viewDidLoad {        [super viewDidLoad];        /*         UIButton设置对应的边距image跟title的边距属性  ...

  9. 探究负边距(negative margin)原理

    W3C规范在介绍margin时有这样一句话: Negative values for margin properties are allowed, but there may be implement ...

随机推荐

  1. PDF判断打印是A4还是B5

    打印材料通畅就是这样两个规格,之前经常受其困扰,B5规格达成A4会显得字很大,当然本身A4就跟大:如果是A4打成B5字很小的: 其实,判断依据就是Adobe reader里面的,当鼠标滑向左下角的时候 ...

  2. NULL, nil, Nil详解

    原文地址:http://blog.csdn.net/wzzvictory/article/details/18413519    感谢原作者 作者:wangzz 原文地址:http://blog.cs ...

  3. UIStackView 简单使用

    UIStackView提供了一个高效的接口用于平铺一行或一列的视图组合.对于嵌入到StackView的视图,你不用再添加自动布局的约束了.Stack View管理这些子视图的布局,并帮你自动布局约束. ...

  4. PHP程序的一次重构记录

    项目和新需求: 我们有一个PHP写的webmail系统,有一个mail_list.php用于展现用户的邮件列表这个页面支持folderId参数(因为邮件是存在不同的文件夹下的)由于邮件太多所以支持翻页 ...

  5. 数据结构练习 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 ...

  6. 3G 2G GPRS 1G的概念

    3G, 第三代移动通信技术(3rd-generation,3G),是指支持高速数据传输的蜂窝移动通讯技术.3G服务 能够同时传送声音及数据信息,速率一般在几百kbps以上.3G标准:它们分别是WCDM ...

  7. Gartner 如何看 RASP 和 WAF?

    在这个计算机网络飞速发展的网络时代里,新兴的网络威胁正在不断「侵蚀」着的应用程序和核心数据的安全,各种繁杂的防护手段也随之接踵而来.众所周知,Gartner 是全球最具权威的 IT 研究与顾问咨询公司 ...

  8. android 对象传输及parcel机制

    在开发中不少要用到Activity直接传输对象,下面我们来看看,其实跟java里面差不多   自定义对象的传递:通过intent传递自定义对象的方法有两个  第一是实现Serialization接口: ...

  9. Eclipse can't install updates

    trying to update eclipse but after downloading updates i always get an error dialog saying: An error ...

  10. 《Spark大数据处理:技术、应用与性能优化 》

    基本信息 作者: 高彦杰 丛书名:大数据技术丛书 出版社:机械工业出版社 ISBN:9787111483861 上架时间:2014-11-5 出版日期:2014 年11月 开本:16开 页码:255 ...