├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml └── src ├── Changelog.txt ├── Directory.Build.props ├── NotifyIconWpf.Sample.ShowCases ├── App.xaml ├── App.xaml.cs ├── Commands │ ├── CloseWindowCommand.cs │ ├── CommandBase.cs │ ├── HideSampleWindowCommand.cs │ └── ShowSampleWindowCommand.cs ├── Icons │ ├── Bulb.ico │ ├── Computers.ico │ ├── Error.ico │ ├── Inactive.ico │ └── NetDrives.ico ├── Images │ ├── Add.png │ ├── Close.png │ ├── Info.png │ ├── Logo.png │ ├── Preferences.png │ └── Remove.png ├── Main.xaml ├── Main.xaml.cs ├── NotifyIconWpf.Sample.ShowCases.csproj ├── Properties │ └── AssemblyInfo.cs ├── Showcase │ ├── FancyBalloon.xaml │ ├── FancyBalloon.xaml.cs │ ├── FancyPopup.xaml │ ├── FancyPopup.xaml.cs │ ├── FancyToolTip.xaml │ ├── FancyToolTip.xaml.cs │ ├── NotifyIconResources.xaml │ ├── ShowcaseWindow.xaml │ ├── ShowcaseWindow.xaml.cs │ ├── WelcomeBalloon.xaml │ └── WelcomeBalloon.xaml.cs ├── Tutorials │ ├── 01 - Declaration │ │ ├── NotifyIconResourceDictionary.xaml │ │ ├── SimpleWindowWithNotifyIcon.xaml │ │ └── SimpleWindowWithNotifyIcon.xaml.cs │ ├── 02 - ToolTips │ │ ├── InlineToolTipWindow.xaml │ │ ├── InlineToolTipWindow.xaml.cs │ │ ├── SimpleUserControl.xaml │ │ ├── SimpleUserControl.xaml.cs │ │ ├── UserControlToolTipWindow.xaml │ │ └── UserControlToolTipWindow.xaml.cs │ ├── 03 - Popups │ │ ├── InlinePopupWindow.xaml │ │ └── InlinePopupWindow.xaml.cs │ ├── 04 - ContextMenus │ │ ├── InlineContextMenuWindow.xaml │ │ └── InlineContextMenuWindow.xaml.cs │ ├── 05 - Balloons │ │ ├── BalloonSampleWindow.xaml │ │ └── BalloonSampleWindow.xaml.cs │ ├── 06 - Commands │ │ ├── CommandWindow.xaml │ │ ├── CommandWindow.xaml.cs │ │ └── ShowMessageCommand.cs │ ├── 07 - Events │ │ ├── EventVisualizerWindow.xaml │ │ └── EventVisualizerWindow.xaml.cs │ ├── 08 - DataBinding │ │ ├── DataBoundToolTipWindow.xaml │ │ └── DataBoundToolTipWindow.xaml.cs │ └── 09 - MVVM │ │ ├── Clock.png │ │ ├── ClockPopup.xaml │ │ ├── ClockPopup.xaml.cs │ │ ├── MvvmSampleViewModel.cs │ │ ├── MvvmSampleWindow.xaml │ │ └── MvvmSampleWindow.xaml.cs ├── app.config └── app.manifest ├── NotifyIconWpf.Sample.Windowless ├── App.xaml ├── App.xaml.cs ├── DelegateCommand.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NotifyIconResources.xaml ├── NotifyIconViewModel.cs ├── NotifyIconWpf.Sample.Windowless.csproj ├── Properties │ └── AssemblyInfo.cs ├── Red.ico ├── app.config └── app.manifest ├── NotifyIconWpf.Sample.WindowsForms ├── FancyPopup.xaml ├── FancyPopup.xaml.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Icon │ ├── Bulb.ico │ ├── Computers.ico │ └── Led.ico ├── Images │ └── Preferences.png ├── NotifyIconWpf.Sample.WindowsForms.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── app.config └── app.manifest ├── NotifyIconWpf.sln ├── NotifyIconWpf.snk ├── NotifyIconWpf ├── BalloonIcon.cs ├── Diagrams │ └── TaskbarIcon Overview.cd ├── IconExtensions.cs ├── Interop │ ├── AppBarInfo.cs │ ├── BalloonFlags.cs │ ├── IconDataMembers.cs │ ├── IconState.cs │ ├── MouseEvent.cs │ ├── NotifyCommand.cs │ ├── NotifyIconData.cs │ ├── NotifyIconVersion.cs │ ├── Point.cs │ ├── Size.cs │ ├── SystemInfo.cs │ ├── TrayInfo.cs │ ├── WinApi.cs │ ├── WindowClass.cs │ ├── WindowMessageSink.cs │ └── WindowsMessages.cs ├── NotifyIconWpf.csproj ├── NotifyIconWpf.snk ├── PopupActivationMode.cs ├── Properties │ └── AssemblyInfo.cs ├── RoutedEventHelper.cs ├── TaskbarIcon.Declarations.cs ├── TaskbarIcon.cs └── Util.cs ├── NuGet.Config ├── global.json ├── icon.png └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /src/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/Changelog.txt -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/App.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/App.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Commands/CloseWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Commands/CloseWindowCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Commands/CommandBase.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Commands/HideSampleWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Commands/HideSampleWindowCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Commands/ShowSampleWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Commands/ShowSampleWindowCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Icons/Bulb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Icons/Bulb.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Icons/Computers.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Icons/Computers.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Icons/Error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Icons/Error.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Icons/Inactive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Icons/Inactive.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Icons/NetDrives.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Icons/NetDrives.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Add.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Close.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Info.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Logo.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Preferences.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Images/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Images/Remove.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Main.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Main.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Main.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Main.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/NotifyIconWpf.Sample.ShowCases.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/NotifyIconWpf.Sample.ShowCases.csproj -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyBalloon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyBalloon.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyBalloon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyBalloon.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyPopup.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyPopup.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyToolTip.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyToolTip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/FancyToolTip.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/NotifyIconResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/NotifyIconResources.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/ShowcaseWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/ShowcaseWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/ShowcaseWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/ShowcaseWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/WelcomeBalloon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/WelcomeBalloon.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Showcase/WelcomeBalloon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Showcase/WelcomeBalloon.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/NotifyIconResourceDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/NotifyIconResourceDictionary.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/01 - Declaration/SimpleWindowWithNotifyIcon.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/InlineToolTipWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/SimpleUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/SimpleUserControl.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/SimpleUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/SimpleUserControl.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/02 - ToolTips/UserControlToolTipWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/03 - Popups/InlinePopupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/03 - Popups/InlinePopupWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/03 - Popups/InlinePopupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/03 - Popups/InlinePopupWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/04 - ContextMenus/InlineContextMenuWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/05 - Balloons/BalloonSampleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/05 - Balloons/BalloonSampleWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/05 - Balloons/BalloonSampleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/05 - Balloons/BalloonSampleWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/CommandWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/CommandWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/CommandWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/CommandWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/ShowMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/06 - Commands/ShowMessageCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/07 - Events/EventVisualizerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/07 - Events/EventVisualizerWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/07 - Events/EventVisualizerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/07 - Events/EventVisualizerWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/08 - DataBinding/DataBoundToolTipWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/Clock.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/ClockPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/ClockPopup.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/ClockPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/ClockPopup.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleViewModel.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/Tutorials/09 - MVVM/MvvmSampleWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/app.config -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.ShowCases/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.ShowCases/app.manifest -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/App.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/App.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/DelegateCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/MainWindow.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/NotifyIconResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/NotifyIconResources.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/NotifyIconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/NotifyIconViewModel.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/NotifyIconWpf.Sample.Windowless.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/NotifyIconWpf.Sample.Windowless.csproj -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/Red.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/Red.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/app.config -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.Windowless/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.Windowless/app.manifest -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/FancyPopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/FancyPopup.xaml -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/FancyPopup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/FancyPopup.xaml.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Form1.Designer.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Form1.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Form1.resx -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Icon/Bulb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Icon/Bulb.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Icon/Computers.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Icon/Computers.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Icon/Led.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Icon/Led.ico -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Images/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Images/Preferences.png -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/NotifyIconWpf.Sample.WindowsForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/NotifyIconWpf.Sample.WindowsForms.csproj -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Program.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/Properties/Resources.resx -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/app.config -------------------------------------------------------------------------------- /src/NotifyIconWpf.Sample.WindowsForms/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.Sample.WindowsForms/app.manifest -------------------------------------------------------------------------------- /src/NotifyIconWpf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.sln -------------------------------------------------------------------------------- /src/NotifyIconWpf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf.snk -------------------------------------------------------------------------------- /src/NotifyIconWpf/BalloonIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/BalloonIcon.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Diagrams/TaskbarIcon Overview.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Diagrams/TaskbarIcon Overview.cd -------------------------------------------------------------------------------- /src/NotifyIconWpf/IconExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/IconExtensions.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/AppBarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/AppBarInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/BalloonFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/BalloonFlags.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/IconDataMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/IconDataMembers.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/IconState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/IconState.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/MouseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/MouseEvent.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/NotifyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/NotifyCommand.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/NotifyIconData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/NotifyIconData.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/NotifyIconVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/NotifyIconVersion.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/Point.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/Size.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/SystemInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/TrayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/TrayInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/WinApi.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/WindowClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/WindowClass.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/WindowMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/WindowMessageSink.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Interop/WindowsMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Interop/WindowsMessages.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/NotifyIconWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/NotifyIconWpf.csproj -------------------------------------------------------------------------------- /src/NotifyIconWpf/NotifyIconWpf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/NotifyIconWpf.snk -------------------------------------------------------------------------------- /src/NotifyIconWpf/PopupActivationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/PopupActivationMode.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/RoutedEventHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/RoutedEventHelper.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/TaskbarIcon.Declarations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/TaskbarIcon.Declarations.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/TaskbarIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/TaskbarIcon.cs -------------------------------------------------------------------------------- /src/NotifyIconWpf/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NotifyIconWpf/Util.cs -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/NuGet.Config -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcodet/wpf-notifyicon/HEAD/src/version.json --------------------------------------------------------------------------------