zoukankan      html  css  js  c++  java
  • RichTextBox 字间距

    using System;
    using System.Collections.Generic;
    //using System.Linq;
    using System.Text;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Runtime.InteropServices;
    
    namespace DataboundRTB
    {
        [ClassInterface(ClassInterfaceType.AutoDispatch), DefaultBindingProperty("Rtf"), Description("DescriptionRichTextBox"), ComVisible(true), Docking(DockingBehavior.Ask), Designer("System.Windows.Forms.Design.RichTextBoxDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
        class dbRTBox : System.Windows.Forms.RichTextBox
        {
    
            [Bindable(true), RefreshProperties(RefreshProperties.All), SettingsBindable(true), DefaultValue(false), Category("Appearance")]
            new public string Rtf
            {
                get
                {
                    return base.Rtf;
                }
                set
                {
                    base.Rtf = value;
                }
            }
    
        }
    }
    

      

  • 相关阅读:
    Python-内置函数
    Python-匿名函数
    Python-函数递归-二分法
    Python-函数递归
    Day4-函数
    CSS-定位
    CSS-文本属性,文字属性
    CSS-浮动
    CSS-盒模型
    CSS-继承和层叠
  • 原文地址:https://www.cnblogs.com/ouuy/p/2773530.html
Copyright © 2011-2022 走看看