如何在NotifyIcon.WPF中放置tb:TaskbarIcon.TrayToolTip右上角

时间:2019-05-12 07:39:21

标签: wpf xaml

我正在尝试使用NotifyIcon.WPF模块定位我的tb:TaskbarIcon.TrayToolTip。 http://www.hardcodet.net/wpf-notifyicon

我制作了下面描述的示例代码。 本守则基于 中的示例代码  https://www.codeproject.com/Articles/36468/WPF-NotifyIcon-2

如何放置 tb:TaskbarIcon.TrayToolTip (用户右上角)?

我在 tb:TaskbarIcon.TrayToolTip 中找不到展示位置属性。

请告诉我如何处理此问题。

Mainwindow.xaml


        <tb:TaskbarIcon
            x:Name="MyNotifyIcon"
            IconSource="/Icons/Error.ico"
            PreviewTrayContextMenuOpen="MyNotifyIcon_PreviewTrayContextMenuOpen"
            ToolTipText="aaaaaaaaaaa"
            TrayContextMenuOpen="MyNotifyIcon_TrayContextMenuOpen">

            <tb:TaskbarIcon.TrayToolTip>



                <Border
                    Width="160"
                    Height="40"
                    Background="Black"
                    BorderBrush="Red"
                    BorderThickness="2"
                    CornerRadius="4"
                    Opacity="0.8">
                    <TextBlock
                        HorizontalAlignment="Center"
                        VerticalAlignment="Center"
                        FontSize="15"
                        Foreground="White"
                        Text="hello world" />
                </Border>
            </tb:TaskbarIcon.TrayToolTip>




            <!--  Set a simple context menu  -->
            <!--  the data context of the context menu is the NotifyIcon itself (see more about this in DataBinding samples)  -->


        </tb:TaskbarIcon>





0 个答案:

没有答案