我在按钮点击事件中显示弹出窗口>我在该弹出窗口中保留了一个自定义用户控件,因此无论何时显示弹出窗口,都会显示自定义用户控件.但是现在我需要修改该自定义控件.
弹出窗口中的当前自定义控件如下所示
但是我需要拐角处看起来像下面的图像.我需要控制中的那个尖角,并且每当显示弹出窗口时我都需要那个尖角
吹嘘按钮的代码及其弹出窗口
<telerik:RadButton Name="btnH" Grid.Column="1" HorizontalAlignment="Left" Margin="444,56,0,0" Grid.Row="2" VerticalAlignment="Top"
Width="23" Height="23" BorderThickness="6" BorderBrush="#4E4E4E" Click="btnH_Click" >
<Image Source="Images/help.png" />
</telerik:RadButton>
<Popup PopupAnimation="Fade" Placement="Mouse" AllowsTransparency="True" StaysOpen="False" x:Name="TooltipPopup" >
<Border Background="AntiqueWhite" CornerRadius="0" BorderThickness="1">
<StackPanel Margin="1" Orientation="Horizontal" >
<local:UCToolTip></local:UCToolTip>
</StackPanel>
</Border>
</Popup>
解决方法:
这是XAML中的一个示例:
<Grid Width="300" Height="200">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid Background="Orange">
<!--Your content here-->
</Grid>
<Polygon Grid.Row="1"
Points="0,0 15,0, 0,30" Stroke="Orange" Fill="Orange" />
</Grid>