gpt4 book ai didi

wpf - 半透明背景的文本框

转载 作者:行者123 更新时间:2023-12-04 14:36:39 25 4
gpt4 key购买 nike

需要Textbox的半透明背景,文本内容应该正常显示。

款式 刷子可以存储在Resource字典中是好的。

笔记:

  • 我的 textBox 被包裹在一个 ContentControl 中。
  • 这个类似的问题没有帮助。 TextBox with a Transparent Background .
  • 最佳答案

    在 XAML 中,您可以设置 Background属性(property)到Transparent :

    <TextBox Background="Transparent" />

    在代码隐藏中,您可以使用以下代码:
    TextBox tb = new TextBox 
    {
    Width = 100,
    Background = Brushes.Transparent
    };

    如果要将背景设置为对所有人透明 TextBox您可以使用以下样式:
    <Style TargetType="TextBox">
    <Setter Property="Background" Value="Transparent" />
    </Style>

    关于wpf - 半透明背景的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14984933/

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