我想通过绑定设置控件的宽度,以厘米为单位。 (这是我的打印输出的大小所以我发现使用厘米很容易)
所以我想做这样的事情:
<FlowDocument x:Name="flowdocument" PageWidth="{Binding Barcode.Width}" PageHeight="{Binding BarcodeSjabloon.Height}">
但我想将它设置为厘米,如下所示:
<FlowDocument x:Name="flowdocument" PageWidth="20cm" PageHeight="30cm">
知道如何实现这个目标吗?