- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为“xx”的项目。我创建了一个具有以下路径的文件夹“图像”:xx\bin\Debug\images\
图像只包含一张照片它的名字是“1.jpg”MainWindow 包含 Image 控件;我将这段代码设置为加载图像源,但为什么不起作用??:
private void Image_MouseDown(object sender, MouseButtonEventArgs e)
{
Image i = sender as Image; ;
BitmapImage b = new BitmapImage(new Uri(@"images\1.jpg",UriKind.Relative));
i.Source=b;
}
如何通过代码加载图像源??提前致谢:)
最佳答案
您需要将1.jpg
添加到images
文件夹和set the Properties 中的项目中。 1.jpg
到 Resource。要加载资源,请使用 packURI约定。
private void Image_MouseDown(object sender, MouseButtonEventArgs e)
{
Image i = sender as Image; ;
BitmapImage b = new BitmapImage(new Uri(@"pack://application:,,,/"
+ Assembly.GetExecutingAssembly().GetName().Name
+ ";component/"
+ "Images/1.jpg", UriKind.Absolute));
i.Source=b;
}
关于c# - 图片来源 UriKind,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10654861/
UriKind.Relative 和有什么区别, UriKind.Absolute , 和 UriKind.RelativeOrAbsolute ? 最佳答案 有些 API 需要绝对 URI,有些则需
我有一个名为“xx”的项目。我创建了一个具有以下路径的文件夹“图像”:xx\bin\Debug\images\ 图像只包含一张照片它的名字是“1.jpg”MainWindow 包含 Image 控件;
除了检查路径是否为相对路径并使用正确的 UriKind 之外,始终使用 UriKind.RelativeOrAbsolute (C#/Silverlight) 是否有任何缺点? Uri nav = n
我正在做的是当我选择一行并单击显示按钮时我将有一个 datagridview 我想显示图像以及为此我编写了以下代码的一些信息 public partial class WpfWindow : Wind
我的方法接收 URI 作为字符串并尝试将其解析为可预测且一致的格式。传入 URL 可以是绝对的 ( http://www.test.com/myFolder ) 或相对的 (/myFolder)。绝对
我是 Windows 手机开发人员。我使用 NavigationService 类导航到不同的页面。在这里,我们使用了 UriKind 属性。这个属性实际上是什么意思?.. 我用谷歌搜索,但没有得到明
我是一名优秀的程序员,十分优秀!