将 WPF 宽度/高度转换为 VB 6 宽度/高度

发布于 2024-09-08 19:05:30 字数 131 浏览 2 评论 0原文

我的 WPF 控件需要公开 MinWidth 和 MinHeigth 供托管 VB 6 应用程序使用和遵守。从一种转换为另一种的最可靠的方法是什么?

(如果有帮助,我可以将 VB 6 中的 ScaleMode 属性更改为任何值。)

My WPF controls need to expose a MinWidth and MinHeigth for the hosting VB 6 application to consume and honor. What's the most reliable way to convert from one to the other.

(If it will help, I can change the ScaleMode property in VB 6 to whatever.)

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

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

发布评论

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

评论(1

荒人说梦 2024-09-15 19:05:30
  • VB 6 Twips 的单位是 1/1440 英寸
  • WPF 使用 1 = 1/96 英寸
  • ElementHost.Child 属性需要转换为 FrameworkElement
  • 表单宽度和客户区域宽度之间的差异

需要考虑 公式是

vbForm.Width = (WpfControl.MinWidth / 96 * 1440) + (vbForm.Width - vbForm.ScaleWidth)
  • VB 6 Twips are in 1/1440 of an inch
  • WPF uses 1 = 1/96th of an inches
  • The ElementHost.Child property needs to be cast to a FrameworkElement
  • The difference between the form's width and the client area width needs to be accounted for

Therfore the formula is

vbForm.Width = (WpfControl.MinWidth / 96 * 1440) + (vbForm.Width - vbForm.ScaleWidth)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文