如何使用 P/Invoke SendMessage 设置边距?

发布于 2024-08-14 03:31:33 字数 127 浏览 2 评论 0原文

该线程取决于如何将按钮添加到文本框?

谢谢。

This thread depends on How to add button to textbox?.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

金橙橙 2024-08-21 03:31:33

这是一个支持 RightMargin 属性的文本框控件。在Win7上测试:

using System;
using System.ComponentModel;
using System.Windows.Forms;
using System.Runtime.InteropServices;

class MyTextBox : TextBox {
  private int mRightMargin;

  [DefaultValue(0)]
  public int RightMargin {
    get { return mRightMargin; }
    set {
      if (value < 0) throw new ArgumentOutOfRangeException();
      mRightMargin = value;
      if (this.IsHandleCreated) updateMargin();
    }
  }

  protected override void OnHandleCreated(EventArgs e) {
    base.OnHandleCreated(e);
    if (mRightMargin > 0) updateMargin();
  }

  private void updateMargin() {
    // Send EM_SETMARGINS
    SendMessage(this.Handle, 0xd3, (IntPtr)2, (IntPtr)(mRightMargin << 16));
  }

  [DllImport("user32.dll", CharSet = CharSet.Auto)]
  private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);
}

Here's a textbox control that supports a RightMargin property. Tested on Win7:

using System;
using System.ComponentModel;
using System.Windows.Forms;
using System.Runtime.InteropServices;

class MyTextBox : TextBox {
  private int mRightMargin;

  [DefaultValue(0)]
  public int RightMargin {
    get { return mRightMargin; }
    set {
      if (value < 0) throw new ArgumentOutOfRangeException();
      mRightMargin = value;
      if (this.IsHandleCreated) updateMargin();
    }
  }

  protected override void OnHandleCreated(EventArgs e) {
    base.OnHandleCreated(e);
    if (mRightMargin > 0) updateMargin();
  }

  private void updateMargin() {
    // Send EM_SETMARGINS
    SendMessage(this.Handle, 0xd3, (IntPtr)2, (IntPtr)(mRightMargin << 16));
  }

  [DllImport("user32.dll", CharSet = CharSet.Auto)]
  private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);
}
乱了心跳 2024-08-21 03:31:33

根据文档

[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam);

...

SendMessage(hwnd, EM_SETMARGINS, (IntPtr)EC_RIGHTMARGIN, (IntPtr)(rightMargin << 16));

According to the documentation:

[DllImport("user32.dll", CharSet=CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam);

...

SendMessage(hwnd, EM_SETMARGINS, (IntPtr)EC_RIGHTMARGIN, (IntPtr)(rightMargin << 16));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文