当前位置: 首页>>代码示例>>C#>>正文


C# Form.Invoke方法代码示例

本文整理汇总了C#中Form.Invoke方法的典型用法代码示例。如果您正苦于以下问题:C# Form.Invoke方法的具体用法?C# Form.Invoke怎么用?C# Form.Invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Form的用法示例。


在下文中一共展示了Form.Invoke方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: UnregisterHotKey

    public static void UnregisterHotKey(Form f)
    {
        try
        {
            Func ff = delegate()
            {
                UnregisterHotKey(f.Handle, keyId); // modify this if you want more than one hotkey
            };

            f.Invoke(ff); // this should be checked if we really need it (InvokeRequired), but it's faster this way
        }
        catch (Exception ex)
        {
            Debug.WriteLine(ex.ToString());
        }
    }
开发者ID:aishwar,项目名称:taskodo,代码行数:16,代码来源:WindowsShell.cs

示例2: RegisterHotKey

    public static void RegisterHotKey(Form f, Keys key)
    {
        int modifiers = 0;

        if ((key & Keys.Alt) == Keys.Alt)
            modifiers = modifiers | WindowsShell.MOD_ALT;

        if ((key & Keys.Control) == Keys.Control)
            modifiers = modifiers | WindowsShell.MOD_CONTROL;

        if ((key & Keys.Shift) == Keys.Shift)
            modifiers = modifiers | WindowsShell.MOD_SHIFT;

        Keys k = key & ~Keys.Control & ~Keys.Shift & ~Keys.Alt;

        Func ff = delegate()
        {
            keyId = f.GetHashCode(); // this should be a key unique ID, modify this if you want more than one hotkey
            RegisterHotKey((IntPtr)f.Handle, keyId, modifiers, (int)k);
        };

        f.Invoke(ff); // this should be checked if we really need it (InvokeRequired), but it's faster this way
    }
开发者ID:aishwar,项目名称:taskodo,代码行数:23,代码来源:WindowsShell.cs

示例3: showOKDialog

 public DialogResult showOKDialog(Form use_me, String title, String message)
 {
     if(Environment.UserInteractive) {
             if(use_me.InvokeRequired) {
                 return (DialogResult)use_me.Invoke(new showOKDialogDelegate(showOKDialog), new Object[] {use_me,title,message});
             } else {
                 return MessageBox.Show(use_me,message,title,MessageBoxButtons.OK,MessageBoxIcon.Information,MessageBoxDefaultButton.Button1);
             }
         } else {
             lock(use_me) {
                 return MessageBox.Show(message,title, MessageBoxButtons.OK,MessageBoxIcon.Information,MessageBoxDefaultButton.Button1,MessageBoxOptions.ServiceNotification);
             }
         }
 }
开发者ID:MissioDei,项目名称:MDSFM,代码行数:14,代码来源:invokes.cs

示例4: showFolderBrowserDialog

 public DialogResult showFolderBrowserDialog(Form daddy, FolderBrowserDialog baby)
 {
     if(daddy.InvokeRequired) {
             return (DialogResult)daddy.Invoke(new showFolderBrowserDialogDelegate(showFolderBrowserDialog), new Object[] { daddy, baby });
         } else {
             lock(daddy) {
                 lock(baby) {
                     return baby.ShowDialog(daddy);
                 }
             }
         }
 }
开发者ID:MissioDei,项目名称:MDSFM,代码行数:12,代码来源:invokes.cs

示例5: show

 public void show(Form daddy, Form baby)
 {
     if(daddy.InvokeRequired) {
             daddy.Invoke(new showDelegate(show), new Object[] { daddy, baby });
         } else {
             lock(daddy) {
                 lock(baby) {
                     baby.Show(daddy);
                 }
             }
         }
 }
开发者ID:MissioDei,项目名称:MDSFM,代码行数:12,代码来源:invokes.cs

示例6: clearToolStripItems

 public void clearToolStripItems(Form in_me, ToolStripMenuItem clear_me)
 {
     if(in_me.InvokeRequired) {
             in_me.Invoke(new clearToolStripItemsDelegate(clearToolStripItems),new Object[] {in_me, clear_me});
         } else {
             lock(clear_me) {
                 clear_me.DropDownItems.Clear();
             }
         }
 }
开发者ID:MissioDei,项目名称:MDSFM,代码行数:10,代码来源:invokes.cs

示例7: addToolStripItem

 public void addToolStripItem(Form in_me, ToolStripMenuItem to_me, ToolStripMenuItem add_me)
 {
     if(in_me.InvokeRequired) {
             in_me.Invoke(new addToolStripItemDelegate(addToolStripItem),new Object[] {in_me, to_me, add_me});
         } else {
             lock(to_me) {
                 to_me.DropDownItems.Add(add_me);
             }
         }
 }
开发者ID:MissioDei,项目名称:MDSFM,代码行数:10,代码来源:invokes.cs


注:本文中的Form.Invoke方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。