4
WPF "Font"でGDIフォントを変換する必要があります。 WPFはピクセル単位であるでSystem.Drawing.Font.SizeをWPFに変換するFontSize
myGdiFont As System.Drawing.Font
particularryで
_Family As Windows.Media.FontFamily
_Style As Windows.FontStyle
_Weight As Windows.FontWeight
_Size As Double
に、私は...
_Size = myGdiFont.Size (???)
フォントが単位またはポイントであるWinFormsの中にサイズを変換する必要があります...どのように1つを別のものに変換するのですか?
PS。
Clemensの表示をフォローするのは正しいですか?
Dim myDrawingFont As New System.Drawing.Font("Arial", 10)
Dim myWpfLabel As New Windows.Controls.Label
myWpfLabel.FontSize = myDrawingFont.SizeInPoints * 72/96
修正:乗算することにより
myWpfLabel.FontSize = myDrawingFont.SizeInPoints * 96/72
私の編集を確認できますか? – serhio
いいえ、 'myWpfLabel.FontSize = myDrawingFont.SizeInPoints/72 * 96'にする必要があります。 – Clemens