English 中文(简体)
在WPF/XAML中安装有显微镜的蚊帐
原标题:Implementation of toolbar with icons in WPF/XAML

在我的台式邮资应用中,我想用关键行动(接手、更新、删除等)实施一个工具路障,就像你在任何网络间邮件服务中看到的那样。

为了做到这一点,我用所有可能的ons子(普通、活跃、残疾等)大剂量计算。

如何显示整个形象,而只是一个领域。 例如,在我的icon是平方且有50px方的情况下,从Pixel 50到pixel 100? 换言之,如果所有电灯被放置到一个大型的PNG-image,你建议如何在WPF中选用一个小小小小小小小小小小小小小小小小小小块图像,在工具bar子内展示吗?

P.S. 在网络开发中,通常使用一个全政府通用的图像,并且当你想用一个特定的元子来界定你想要显示的哪一个领域。

最佳回答

这确实是图象资源在计生基金内管理的方法,如果你这样做,你将同平台的自然机制作斗争。 你们应考虑将图像分开,然后把图像分配给一种资源。 然后,你可以相互约束,并作为图像或粗体来源出现。

如果你想把他们描绘成一个大的形象,那么你或许能够使用TileBrush,以发现他们,只展示你们想要的形象。

问题回答

您可以把国歌的背景描绘成一个<>ImageBrush。 Seting the TileMode to None and View BoxUnits to Absolute. 您可向有关区域设立<条码>意见箱。 那么,你就可以对财产进行约束,以动态改变形象,或者如果是静态形象,就直接树立价值观。

<Button Width="80" Height="80">
    <Button.Background>
        <ImageBrush ImageSource="..." TileMode="None" ViewboxUnits="Absolute">
            <ImageBrush.Viewbox>
                <Rect Size="80,80" X="{Binding ...}" />
            </ImageBrush.Viewbox>
        </ImageBrush>
    </Button.Background>
</Button>

我同意,这并不是最高效地利用资源,而是在这里说明如何做到这一点。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签