English 中文(简体)
使用Windows .Net的通知机制
原标题:Notifications mechanism for Windows using .Net

我正在研究为Windows提供的不同通知机制,使用户能够订阅通知,服务器(在不同的机器上运行)向用户发送网络信息。 (随后应在桌面上通过“Toast”通知向用户发出这一信息。)

我对“Windows”的想法。 但是,我不清楚能否将其用于网络(如果能够的话,需要由服务器操作的话)?

其他想法:

  • 办公室宣传员的风俗习惯——向群体中的所有人发送信息

  • a 客户的定制书面数据显示信标以及发给所有用户的定制书面服务器。

我是否可以为此目的使用任何其他微软技术? (理想的情况是,我应当允许我用“网络”语言制定定制。)

最佳回答

Windows的生长在网络上有效。 实际上,有三种方式混淆:

  1. 如果你在服务器上运行了GfW,你可以设立服务器,将其收到的任何通知转交其他电脑。 大部分配置由原机(服务器)集中管理,或

  2. 您可以订阅用户机器,听取服务器的通知。 如果服务器允许(该服务器也必须运行GfW),那么大多数配置可以针对每个客户进行。

  3. 利用增强的指挥线工具发出通知。 你可以简单地说明计算机名称/地址,通知将发送网络。

http://www.growlforwindows.com/gfw/help/#network”rel=“nofollow”http://www.growlforwindows.com/gfw/help/#network

detailed info about growlnotify can be found here: http://www.growlforwindows.com/gfw/help/growlnotify.aspx

如果你想从开发商的角度来看更多的信息,就会在全球fW讨论小组中提出一个问题:

问题回答

暂无回答




相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签