我需要创建一个UserControl,它具有透明控件背景的一部分。透明部分切割成边框形状,CornerRadius为2 - 由于设计的原因,它是必需的。
这是我的代码无效:
<UserControl Margin="1" x:Name="Box">
<UserControl.Resources>
<Style TargetType="UserControl">
<Setter Property="Height" Value="16" />
</Style>
</UserControl.Resources>
<Grid>
<Border CornerRadius="2" BorderThickness="0">
<Border.Background>
<SolidColorBrush Color="Black" Opacity=".3" />
</Border.Background>
<Border.OpacityMask>
<VisualBrush>
<VisualBrush.Visual>
<Grid
Background="Black"
Width="{Binding ElementName=Box, Path=ActualWidth}"
Height="{Binding ElementName=Box, Path=ActualHeight}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Border Grid.Column="1" Margin="1" CornerRadius="2" Background="Transparent" BorderThickness="0" />
</Grid>
</VisualBrush.Visual>
</VisualBrush>
</Border.OpacityMask>
</Border>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBlock
VerticalAlignment="Center" TextAlignment="Right" FontSize="10" Margin="2"
Foreground="White" Text="Property" />
<TextBlock
Grid.Column="1" VerticalAlignment="Center" TextAlignment="Center" FontSize="10" Margin="2"
Text="Value" />
</Grid>
</Grid>
</UserControl>
我做了一些更改,所以你们应该能够直接放入XamlPad。
由于某些原因,我设置为Border的OpacityMask的VisualBrush根本不起作用。 OpacityMask只显示完全可见的所有内容。为了进行测试,我放弃了一个快速的LinearGradientBrush,它按预期工作。
使用VisualBrush和OpacityMask是否存在一些问题?这里出了什么问题?
以下是我正在努力实现的截图:
ScreenShot http://monitor.utopiaselfscan.com/Screen.png
UserControl是标题,表示实体号,进度,小时等。它们是黑色,透明度为30%,并且具有圆角矩形不透明蒙版抠图。我通常使用图像来渲染这样的东西,b / c我们的图形艺术家会因为具有玻璃效果而疯狂。
答案 0 :(得分:2)
您的代码中的Box
是谁?你还可以添加一个想要实现的图像吗?
你有没有尝试过Paths来获得你想要的东西?例如。以下路径:
<Path Stroke="Black" Stretch="Fill" StrokeThickness="1" Fill="#CCCCFF">
<Path.Data>
<GeometryGroup FillRule="EvenOdd" >
<EllipseGeometry Center="40,70" RadiusX="30" RadiusY="30" />
<RectangleGeometry Rect="30,55 100 30" />
</GeometryGroup>
</Path.Data>
</Path>
给你这个剪影: alt text http://img704.imageshack.us/img704/928/cutw.jpg
编辑:以下是实现设计的一种方法:
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Page.Resources>
<SolidColorBrush x:Key="FillBrush" Color="Gray" Opacity="0.3"/>
</Page.Resources>
<Grid>
<!-- Set background image here, instead of border-->
<Border>
<Border.Background>
<LinearGradientBrush>
<GradientStop Color="#FFcacaca"/>
<GradientStop Offset="1" Color="#FF353535"/>
</LinearGradientBrush>
</Border.Background>
</Border>
<!-- Content goes here -->
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border
MinHeight="24"
MinWidth="100"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="{StaticResource FillBrush}"
CornerRadius="15, 0, 0, 15"
Padding="0, 0, 5, 0">
<TextBlock
HorizontalAlignment="Right"
VerticalAlignment="Center"
Foreground="White"
Text="From"/>
</Border>
<Border
MinHeight="24"
MinWidth="100"
Grid.Column="1"
HorizontalAlignment="Left"
VerticalAlignment="Top"
BorderBrush="{StaticResource FillBrush}"
BorderThickness="1"
CornerRadius="0, 15, 15, 0">
<TextBox
Margin="5, 0, 5, 0"
VerticalAlignment="Center"
Background="Transparent"
BorderThickness="0"
Foreground="#2f3740"
Text="Verylongname, Johnathan"/>
</Border>
</Grid>
</Grid>
</Page>
重点是使用两个边框和一个画笔。对于标题字段,您可以绘制边框的背景,对于内容字段,可以绘制边框的边框:)。
干杯,安瓦卡。
答案 1 :(得分:0)