ShadowViewer.Controls.Notification 1.2.1

dotnet add package ShadowViewer.Controls.Notification --version 1.2.1
                    
NuGet\Install-Package ShadowViewer.Controls.Notification -Version 1.2.1
                    
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.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ShadowViewer.Controls.Notification" Version="1.2.1" />
                    
Directory.Packages.props
<PackageReference Include="ShadowViewer.Controls.Notification" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ShadowViewer.Controls.Notification --version 1.2.1
                    
#r "nuget: ShadowViewer.Controls.Notification, 1.2.1"
                    
#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.
#addin nuget:?package=ShadowViewer.Controls.Notification&version=1.2.1
                    
Install ShadowViewer.Controls.Notification as a Cake Addin
#tool nuget:?package=ShadowViewer.Controls.Notification&version=1.2.1
                    
Install ShadowViewer.Controls.Notification as a Cake Tool

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.  net8.0-windows10.0.19041 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on ShadowViewer.Controls.Notification:

Package Downloads
ShadowViewer.Core

✨ ShadowViewer Core | Development SDK✨

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 552 a month ago
1.1.6 145 2 months ago
1.1.5 128 2 months ago
1.1.4 91 2 months ago
1.1.2 91 3 months ago
1.1.1 77 3 months ago
1.0.3 81 3 months ago
1.0.2.4 108 9 months ago