如何按钮在WPF中表现w

如何按钮在WPF中表现w

本文介绍了如何按钮在WPF中表现w.r.t图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我希望按钮表现为w.r.t图像,因为它是图像的大小。实际上我想显示按钮,因为它是图像提供的。例如,在下面的代码中,我的图像源正在改变,但其他代码是相同的。I want button to behave w.r.t image as it is size of image.Actually i want to show button as it is of image provided. For example in below code my image source is changing but other code is same.<Button x:Name="BtnMin" Content="" Click="btnStartStop_Click" Margin="403.956,88.106,316.044,379.656" RenderTransformOrigin="0.5,0.5"> <Button.Template> <ControlTemplate> <Grid> <Ellipse> <Ellipse.Fill> <ImageBrush ImageSource="Images/minimize.png"/> </Ellipse.Fill> </Ellipse> </Grid> </ControlTemplate> </Button.Template> </Button> <Button x:Name="btnStartStop" Content="" Margin="84.851,0,495.149,258.284" VerticalAlignment="Bottom" Click="btnStartStop_Click"> <Button.Template> <ControlTemplate> <Grid> <Ellipse> <Ellipse.Fill> <ImageBrush ImageSource="Images/glossyicon.png"/> </Ellipse.Fill> </Ellipse> </Grid> </ControlTemplate> </Button.Template> </Button> 任何人都可以建议如何创建模板,我会在代码中应用,这样我的代码大小就会减少。Can any one suggest how to create template where in code I will apply so my code size will reduce.推荐答案 这篇关于如何按钮在WPF中表现w.r.t图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-03 21:27