如何使textEdit透明?并应该允许写文本文本应该是可见的?

时间:2016-07-16 06:30:03

标签: wpf devexpress-wpf

我在icici银行有一个要求我有一个检查,我有2个打印用户名,数字金额但textEdit应该是不可见的,允许写和读。

    <Window xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"  x:Class="WpfApplication11.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="MainWindow" Height="350" Width="525">
<Grid Margin="0,10,0,0">
    <Grid.Background>
        <ImageBrush ImageSource="c:\users\it-prog3\documents\visual studio 2012\Projects\WpfApplication11\WpfApplication11\Images\ICICI.jpg"/>
    </Grid.Background>
    <dxe:TextEdit Margin="31,60,68,221"  />
</Grid>

1 个答案:

答案 0 :(得分:0)

我担心,你不能使用devexpress textedit来做到这一点。我也在使用devexpress并且有类似的要求。我做的是使用文本框。尝试考虑使用文本框?

在XAML中,您可以直接将Background属性设置为Transparent:

<TextBox x:Name="TextBox1" Background="Transparent" />

在代码隐藏中,您可以使用以下代码将背景设置为透明:

TextBox TextBox1 = new TextBox 
{
    Width = 75,
    Height = 25,
    Background = Brushes.Transparent
};