using System;
using System.Collections.Generic;
using Microsoft.WindowsCE.Forms;
using System.Runtime.InteropServices;
using System.Text;
namespace APPButton_CSharp
{
public struct HotKeyEventArgs
{
public int identifer;
}
public delegate void HotkeyDelegate(object sender, HotKeyEventArgs e);
class AppButton : MessageWindow
{
&