English 中文(简体)
如何参考XAML中的icon资源文档
原标题:How to reference an icon resource file reference in XAML

I m试图在XAML显示一个 i子。 起初,我想重述一个特性,但2008年2月,不会承认它是一种象征,因为它不是经常性的。 然后,我创立了一条信条,试图将 but子图像财产交给他,但不存在,因此更加悲惨。 现在,我利用项目资源,在项目资源目录中添加了它已经消失的icon文档。

我想做的是,利用XAML在座标上显示一角:

<Button>
<Image Source="{StaticResource UpArrow}"/>
</Button>

理想的情况是,我只想把图像放在单独的档案中,并由该项目参考。 我对内容/资源问题感到困惑。

我试图利用:

<UserControl.Resources>
<BitmapImage x:Key="UpArrow" _
  UriSource="Resources/_25B2_Triangle__black__up_pointing.ico" />
</UserControl.Resources>

我对大规模混杂的包装体会视而不见。 当然,在资源档案中划一,应当便于使用/资源或类似手段,而不是绝对档案途径,否则,究竟是什么点?

我希望在XAML中这样做,而不是在密码上说话,因为这样,客户都会做这项工作,但也许我不会在使用后面的代码时感到不满。 与世界森林论坛一道,对于你在大规模努力做什么以及你为什么想要做什么,除了管理者经常避免冷却——这并不非常有益——没有什么文字。

感谢。

问题回答

这样做最容易的方法是:

<Button>
<Image Source="Resources/_25B2_Triangle__black__up_pointing.ico"/>
</Button>

必须记住的是,通过你的申请,确保你的icon案被公认为有效的资源。 有了妇女论坛,你还需要采取另一个步骤,而不是采取老的胜利方式。

在您的“解决方案探索者”中,扩大资源夹,然后点击“_25B2_Triangle_black_up_pointing.ico”文档。 然后是关于财产问题的F4号新闻。 确保《建设行动》财产被定为资源。





相关问题
how to use DynamicResource in the code behind?

I d like to be able to set a property to a dynamic resource programmatically. myControl.Property = this.Resource[key] is not a valid response, since if the resource with the key key is replaced, ...

PHP - Foreach loops and ressources

I m using a foreach loop to process a large set of items, unfortunately it s using alot of memory. (probably because It s doing a copy of the array). Apparently there is a way to save some memory with ...

C# Play MP3 from Resources with MCI or WMP control?

I have a MP3 file in my Resources of Visual C#. I m trying to find out if there is a way I can play this MP3 in a Windows Media Player control or with MCI, I m not particular. I m fairly new to C#. ...

Convert files of any types to a file with c strings

Please suggest a small command-line utility (for Windows) to convert files from particular directory to a valid c file. Maybe it can be done just with batch commands? The resulting file should look ...

How to sort ResourceSet in C#

I have a resource file named filetypes.resx. Some how I figured out to bind the resource values to dropdownlist, but I don t know how to sort the values of ResourceSet. Here is what I did so far, ...

热门标签