ShadowViewer.Controls.Notification 1.1.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package ShadowViewer.Controls.Notification --version 1.1.5                
NuGet\Install-Package ShadowViewer.Controls.Notification -Version 1.1.5                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ShadowViewer.Controls.Notification" Version="1.1.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ShadowViewer.Controls.Notification --version 1.1.5                
#r "nuget: ShadowViewer.Controls.Notification, 1.1.5"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ShadowViewer.Controls.Notification as a Cake Addin
#addin nuget:?package=ShadowViewer.Controls.Notification&version=1.1.5

// Install ShadowViewer.Controls.Notification as a Cake Tool
#tool nuget:?package=ShadowViewer.Controls.Notification&version=1.1.5                

ShadowViewer.Controls.Notification

弹出通知控件

nuget

快速开始

首先需要在你要显示通知的页面初始化NotificationPanel

<Window
    x:Class="Test.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:scontrols="using:ShadowViewer.Controls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:local="using:Test"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid x:Name="Top" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> 
        <scontrols:NotificationPanel
            x:Name="TipContainerCenter"
            Margin="0,0,0,52"
            HorizontalAlignment="Center"
            VerticalAlignment="Bottom"
            Canvas.ZIndex="1"
            FlowDirection="RightToLeft"
            Orientation="Vertical"
            Visibility="Collapsed" />
    </Grid>
</Window>

后续只要调用通知方法即可

// 简单字符串内容
private void ButtonBase_OnClick4(object sender, RoutedEventArgs e)
{
    TipContainerCenter.Notify("测试Error", InfoBarSeverity.Error);
}
// 自定义弹出控件内容
private void ButtonBase_OnClick5(object sender, RoutedEventArgs e)
{
    TipContainerCenter.Notify(new InfoBar
    {
        Message = "Test",
        Severity = InfoBarSeverity.Error,
        IsClosable = false,
        IsIconVisible = true,
        IsOpen = true,
        Content = new Grid()
        {
            Children  =
            {
                new ProgressBar()
                {
                    IsIndeterminate = true
                }
            }
        },
        HorizontalAlignment = HorizontalAlignment.Center,
        FlowDirection = FlowDirection.LeftToRight
    }, displaySeconds:0);
}

鸣谢

Bili.Uwp - 哔哩客户端 - 参考了TipPopup实现

Product Compatible and additional computed target framework versions.
.NET net6.0-windows10.0.19041 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.6 78 3/1/2025
1.1.5 122 2/17/2025
1.1.4 86 2/17/2025
1.1.2 86 1/16/2025
1.1.1 72 1/16/2025
1.0.3 78 1/16/2025
1.0.2.4 106 7/31/2024