0

我在 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>

4

1 回答 1

0

恐怕,您不能使用 devexpress 文本编辑器来做到这一点。我也在使用 devexpress 并且有类似的要求。我所做的是使用文本框。尝试考虑使用文本框?

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

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

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

TextBox TextBox1 = new TextBox 
{
    Width = 75,
    Height = 25,
    Background = Brushes.Transparent
};
于 2016-07-16T06:48:31.860 回答