Giter VIP home page Giter VIP logo

notifyicon's Introduction

NotifyIcon

在通知区域创建图标的组件。

包引用方式(二选一)

  1. 运行时自动匹配平台实现 NuGet version (NotifyIcon)
    • Install-Package NotifyIcon
  2. 仅单个平台实现
    • Windows NuGet version (NotifyIcon.Windows)
      • Install-Package NotifyIcon.Windows
    • Linux NuGet version (NotifyIcon.Linux)
      • Install-Package NotifyIcon.Linux
    • macOS NuGet version (NotifyIcon.Mac)
      • Install-Package NotifyIcon.Mac

平台支持与目标框架

  • Windows
    • .NET Framework 3.5 ~ 4.8+
    • .NET Core 2.0+
    • .NET 5+
    • .NET Standard 2.0+
  • Linux
    • .NET Framework 4.6.1+ / Mono 5.4+
    • .NET Core 2.0+
    • .NET 5+
    • .NET Standard 2.0+
  • macOS
    • .NET Framework 4.6.1+ / Mono 5.4+
    • .NET Core 2.0+
    • .NET 5+
    • .NET Standard 2.0+

使用方式

  1. 直接使用
    • NotifyIcon notifyIcon = NotifyIcon.Create();
  2. 通过 Microsoft.Extensions.DependencyInjection 使用
    • 添加到依赖注入服务中
      • services.AddSingleton(typeof(NotifyIcon), NotifyIcon.ImplType);

添加右键菜单项

notifyIcon.ContextMenuStrip.Items.Add(new ContextMenuStrip.MenuItem() { Text = "Menu Text 01", Command = ReactiveCommand.Create(() =>
{
    // ...
})});

示例项目

Platform ProjectFileName
NotifyIcon for WPF Samples.WpfApp1.csproj
NotifyIcon for Console Samples.ConsoleApp1.csproj
NotifyIcon for Avalonia Samples.AvaloniaApp1.csproj

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.