创建基于 .NET 8 WPF 的桌面测试程序,支持配置通知接口、频道、标题和正文,并通过内置模板快速发送不同类型的测试消息。 实现服务检测、单次发送、自动定时发送、模板轮换、批量发送、非法频道切换和发送日志记录,便于验证 OmniNotify 本地消息 API 的基础行为与异常场景。 Initial-Commit: true
10 lines
373 B
XML
10 lines
373 B
XML
<Application x:Class="OmniNotifyTest.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:OmniNotifyTest"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
|
|
</Application.Resources>
|
|
</Application>
|