0
我試圖從我的文件位置加載圖像。圖像尺寸爲70 * 70;這是一個縮略圖。圖像不能拉伸,但它仍然沒有加載完整的圖像
我的圖像元素在XAML定義是這樣的:
<Image Grid.ColumnSpan="2" Stretch="None" Grid.Row="16" Height="114"
HorizontalAlignment="Left" Name="imgThumbnail"
VerticalAlignment="Top" Width="133"
Grid.RowSpan="3" Grid.Column="2" Margin="28,0,0,0" />
在我的代碼後面我用下面的:
foreach (string filePath in filePathList)
{
if (Path.GetFileNameWithoutExtension(filePath).ToLower().Contains(slugName.ToLower()+"_70x70"))
{
if (Path.GetFileNameWithoutExtension(filePath).ToLower().Contains("_70x70"))
{
filePathList_ToBeDeleted.Add(filePath);
imgThumbnail.Stretch = Stretch.None;
imgThumbnail.Source = new BitmapImage(new Uri(filePath));
//image1.Source = filePath.;
}
}
}
Stretch.None
似乎在我的情況下不能正常工作;有沒有其他的選擇,我在這裏確保我的圖像不被拉伸,並得到它,因爲它是?
目前尚不清楚你想要什麼。你說你不希望圖像被拉伸,並且它在你的情況下工作。你能給我們一個問題來回答嗎? – Akku