gpt4 book ai didi

wpf - 如何在wpf中的文本框中设置图像

转载 作者:行者123 更新时间:2023-12-04 02:20:25 24 4
gpt4 key购买 nike

我的应用程序中有一个文本框,我想向其添加图像。

在某些情况下,我需要图像和文本。

这可能吗?如何实现?

谢谢。

最佳答案

来自 XAML:

<TextBox Name="myTextBox" TextChanged="OnTextBoxTextChanged" Width="200">
<TextBox.Background>
<ImageBrush ImageSource="TextBoxBackground.gif" AlignmentX="Left" Stretch="None" />
</TextBox.Background>
</TextBox>

来自 C#

// Create an ImageBrush.
ImageBrush textImageBrush = new ImageBrush();
textImageBrush.ImageSource = new BitmapImage(new Uri(@"TextBoxBackground.gif", UriKind.Relative));
textImageBrush.AlignmentX = AlignmentX.Left;
textImageBrush.Stretch = Stretch.None;
// Use the brush to paint the button's background.
myTextBox.Background = textImageBrush;

Source

关于wpf - 如何在wpf中的文本框中设置图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8070906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com