mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-13 17:23:19 -05:00
21 lines
631 B
XML
21 lines
631 B
XML
<UserControl
|
|
x:Class="Samples.Tutorials.ToolTips.SimpleUserControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<!-- a simple user control which displays a fixed text within a border -->
|
|
<Border
|
|
Background="White"
|
|
BorderBrush="Orange"
|
|
BorderThickness="2"
|
|
CornerRadius="4"
|
|
Opacity="0.8"
|
|
Width="160"
|
|
Height="40">
|
|
<TextBlock
|
|
Text="hello world"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
</Border>
|
|
|
|
</UserControl> |