<Window.Resources> <BitmapImage x:Key="UerName" CreateOptions="IgnoreImageCache" CacheOption="OnLoad" UriSource="/Test;component/Resources/UerName.jpg"/> <Style x:Key="UserNameTemplate" TargetType="{x:Type TextBox}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="TextBox"> <Grid> <Rectangle> <Rectangle.Fill> <ImageBrush Stretch="Fill" ImageSource="{DynamicResource UerName}"/> </Rectangle.Fill> </Rectangle> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> </Window.Resources> <Grid> <TextBox x:Name="textBox" Style="{StaticResource UserNameTemplate}"/> </Grid>
评论回复