imagesource 相关问题

WPF - 将位图转换为 ImageSource

我需要将 System.Drawing.Bitmap 转换为 System.Windows.Media.ImageSource 类,以便将其绑定到 WizardPage(扩展 WPF 工具包)的 HeaderImage 控件中。 位图设置为

回答 6 投票 0

Maui XAML“ImageSource.FromStream”仍然为空?

毛伊岛有点新,尝试在运行时更新 ImageSource。 我已经搜索了好几个小时了。欢迎任何帮助。代码运行没有任何错误,但图像对象的“源”

回答 1 投票 0

将图像源转换为字符串

我有这个代码: if (MyImage.Source == "ms-appx:///Assets/myimage.png") { //做一点事 } 但我收到这个错误: 无法将类型“string”隐式转换为“Windows.UI.Xaml.Media.ImageSource...

回答 2 投票 0

Strapi 图像未在 Astro 框架中渲染

我想在Astro 中使用strapi 中的图像。我根据 api 插入了(我猜)正确的链接。这是图像的代码,但它根本不会显示图像,而是显示...

回答 1 投票 0

C# WPF MVVM 图像源更新

我正在尝试从视图模型更新 xml 中的图像源,但似乎我无法做到这一点,而且我不明白我缺少什么。 所以...在视图 xml 中,我有一张图像,我为其制作了

回答 1 投票 0

更改后面代码中的图像源 - Wpf

我需要动态设置图像源,请注意我的图像位于网络上的某个位置,这是我的代码 BitmapImage 徽标 = new BitmapImage(); 徽标.BeginInit(); logo.UriSource = new Uri(@"pack://

回答 6 投票 0

在普通页面显示MAUIIcon

我正在开发一个.NET MAUI 应用程序。它有一个 MAUIIcon 作为 AppIcon,到目前为止一切顺利。 但是如何在普通的 XAML contentPage 中显示此图标呢? 我尝试使用 ImageSource.FromFile("A...

回答 1 投票 0

如何在WPF中将Segoe MDL字体图标设置为图像源?

我尝试过搜索功能(当然还有谷歌),但发现对我的问题没有任何帮助。 我使用 Syncfusion 的 ButtonAdv 控件 (https://help.syncfusion.com/wpf/button/overview) ...

回答 2 投票 0

如何阻止 Windows Phone 中的按钮控件在单击时发出难看的白色闪光?

所以我在主页上显示的列表中有一些项目。我有一个看起来像这样的按钮: 所以我在主页上显示的列表中有一些项目。我有一个看起来像这样的按钮: <Button Grid.Column="1" Click="Button_Click" BorderThickness="0" Height="40"> <Button.Background> <ImageBrush ImageSource="/WindowsPhonePanoramaApplication2;component/Images/appbar.feature.email.rest.png" Stretch="None" /> </Button.Background> </Button> 每次我点击它,图像都会消失在这个明亮的白色矩形下面。我宁愿让它显示另一张图片。我怎样才能做到这一点? 感谢观看 您需要更改按钮模板。您可以在此处的文件中找到模板: C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v7.0\Design\System.Windows.xaml ButtonBase模板如下: <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ButtonBase"> <Grid Background="Transparent"> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal"/> <VisualState x:Name="MouseOver"/> <VisualState x:Name="Pressed"> <Storyboard> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentContainer" Storyboard.TargetProperty="Foreground"> <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneBackgroundBrush}" /> </ObjectAnimationUsingKeyFrames> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonBackground" Storyboard.TargetProperty="Background"> <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneForegroundBrush}" /> </ObjectAnimationUsingKeyFrames> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonBackground" Storyboard.TargetProperty="BorderBrush"> <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneForegroundBrush}" /> </ObjectAnimationUsingKeyFrames> </Storyboard> </VisualState> <VisualState x:Name="Disabled"> <Storyboard> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentContainer" Storyboard.TargetProperty="Foreground"> <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneDisabledBrush}" /> </ObjectAnimationUsingKeyFrames> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonBackground" Storyboard.TargetProperty="BorderBrush"> <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource PhoneDisabledBrush}" /> </ObjectAnimationUsingKeyFrames> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonBackground" Storyboard.TargetProperty="Background"> <DiscreteObjectKeyFrame KeyTime="0" Value="Transparent" /> </ObjectAnimationUsingKeyFrames> </Storyboard> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <Border x:Name="ButtonBackground" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="0" Background="{TemplateBinding Background}" Margin="{StaticResource PhoneTouchTargetOverhang}" > <ContentControl x:Name="ContentContainer" Foreground="{TemplateBinding Foreground}" HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}" Padding="{TemplateBinding Padding}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/> </Border> </Grid> </ControlTemplate> </Setter.Value> </Setter> 注意 Pressed VisualState 如何将 ButtonBackground 元素(即 Border)的背景更改为 PhoneForegroundBrush。这就是让你的按钮变白的原因。 您可以创建自己的按钮模板,在Pressed状态下更改图像。如果您不确定如何创建自己的控件模板,请搜索网络。 为此,您需要重新模板化按钮以在单击时使用不同的视觉状态。 另请参阅以下图像按钮控件/替代项: http://blogs.msdn.com/b/dohollan/archive/2011/04/22/using-images-as-buttons-on-windows-phone-7.aspx http://web.archive.org/web/20110209105722/http://www.silvergeek.net/windows-phone-7/imagebutton-control-for-win-phone-7/ http://blogs.msdn.com/b/priozersk/archive/2010/08/14/creating-round-image-button-for-wp7-part-1.aspx 这个问题已经有一年了。但是,这是实现您想要的目标的完美方法。我看到您想在按下应用栏图标时模拟类似的相同体验。 Coding4fun 工具包有你需要的确切疾病。 这是代码的样子, <c4fControls:RoundButton Grid.Column="1" Click="Button_Click" ImageSource="/Myapp;component/Images/appbar.img.png"/> 当然,您必须将 coding4fun 库包含到您的项目中。也将此行添加到页面顶部。 xmlns:c4fControls="clr-namespace:Coding4Fun.Phone.Controls;assembly=Coding4Fun.Phone.Controls"

回答 3 投票 0

将ImageSource作为参数传递给另一个页面

我试图通过 shell 导航将 ImageSource 对象传递到另一个页面。 当我打电话 等待 Shell.Current.GoToAsync($"{nameof(FullScreenImagePage)}?", 新词典...

回答 1 投票 0

Xamarin Image Source AppThemeBinding to object properties

我的 Xamarin 项目中有一个自定义控件。它有一个 ImageSource 类型的 binableProperty 在主视图中,我有一个集合视图,我想在其中将我的属性绑定到 ItemTemplate 中。 我的问题是

回答 0 投票 0

我无法在 xamarin 中更改图像源

我想更改 xamarin 中的图像源,但我看不到我在 .cs 中以某种方式赋予 x:name 的值? .xaml: 我想更改 xamarin 中的图像源,但我看不到我在 .cs 中以某种方式赋予 x:name 的值? .xaml: <Image Source="{local:ResourceResimExt ResourceId=OzelKalem.Content.images.yellowicon.png}" x:Name="resim_icon" VerticalOptions="CenterAndExpand" HorizontalOptions="Start" Margin="49,-28,0,0" IsVisible="true" WidthRequest="16" HeightRequest="16"/> 我想在xaml.cs上这样写: resim_icon.Source = ImageSource.FromFile("redicon.png"); 我试过没用: if ((KalanGun < 0 && durum == 1) && sonTarih < DateTime.Now) { ResourceResimExt resource = new ResourceResimExt(); resource.ResourceId = "OzelKalem.Content.images.redicon.png"; var imageSource = ImageSource.FromResource("OzelKalem.Content.images.redicon.png"); Xamarin.Forms.ImageSource.FromResource("OzelKalem.Content.images.redicon.png"); } else if ((KalanGun > 0 && durum == 2) || durum == 2) { ResourceResimExt resource = new ResourceResimExt(); resource.ResourceId = "OzelKalem.Content.images.greenicon.png"; var imageSource = ImageSource.FromResource("OzelKalem.Content.images.greenicon.png"); Xamarin.Forms.ImageSource.FromResource("OzelKalem.Content.images.greenicon.png"); //resim.ResourceId = "OzelKalem.Content.images.greenicon.png"; } 和 xaml:<Image Source="{Binding ImageSource}"/> xaml.cs: private ImageSource _imageSource; public ImageSource ImageSource { get { return _imageSource; } set { _imageSource = value; } } if ((KalanGun < 0 && durum == 1) && sonTarih < DateTime.Now) { _imageSource = ImageSource.FromResource("OzelKalem.Content.images.redicon.png"); } 我不明白为什么一些非常简单的事情没有发生

回答 0 投票 0

图像缓存问题:图像源总是从缓存中选取图像。 Xamarin形式

我正在Xamarin表单android应用中使用Image控件。在两个位置使用,一个位于汉堡包滑块上,另一个位于内容页面上。我正在从Web API解析图像,并使用以下代码:private ...

回答 1 投票 0

可以在wpf中将ImageSource设置为null

没有人知道如何在xaml中将ImageSource设置为null。像这样的东西[[null谢谢!

回答 2 投票 0

从字符串获取图像源并在recyclerview中显示它们?

我正在使用recyclerview显示图像(在drawable文件夹中),它只是一个练习,并且我有一个由三个对象组成的arraylist(ImageModel),每个ImageModel都有一个字段,我称它为image(...

回答 1 投票 0

我的图像不使用RecyclerView显示吗?

我有一个小问题,我正在尝试显示项目列表,但是它不起作用,每个项目都包含一个图像,所以这是我的Activity:公共类TestRecyclerImagesActivity扩展...

回答 2 投票 1

如何将System.Windows.Input.Cursor转换为ImageSource?

我有一个.cur文件路径(“%SystemRoot%\ cursors \ aero_arrow.cur”),我想在图像控件中显示。所以我需要将Cursor转换为ImageSource。我尝试了CursorConverter和...

回答 1 投票 1

在使用文件选择器更改图像的ImageSource时,弹出提示该文件正在使用中

我有一个带有默认ImageSource的图像,在使用文件选择器拾取新图像时,它加载正常,然后再次拾取先前使用的文件,弹出提示该文件仍在...

回答 2 投票 0

是否有一个ImageSource的转换到Android的位图,反之亦然在Xamarin.Forms解决方案

我目前正在对修改当前位于在PCL项目的图片的应用程序。而我目前具有转换数据类型的麻烦。目前我想...

回答 1 投票 0

WPF - 之后的ImageSource图像失真绑定触发过程中改变

所以,我有的图像,其中有一个源属性。该属性是使用结合来自视图模型得到的ImageSource财产。然而,结合使用的IValueConverter和转换器...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.