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


C# Control.invokeOnThread方法代码示例

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


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

示例1: addNodeToTreeNodeCollection

 /// <summary>
 /// Async Thread safe way to add nodes to TreeViews
 /// </summary>       
 public static void addNodeToTreeNodeCollection(Control controlInCorrectThread, TreeNodeCollection targetTreeNodeCollection, TreeNode newNode, int maxNodesToAdd)
 {
     //            if (controlInCorrectThread.okThread(delegate { addNodeToTreeNodeCollection(controlInCorrectThread,targetTreeNodeCollection, newNode); }))
     controlInCorrectThread.invokeOnThread(
         () =>
         {
             if (maxNodesToAdd == -1 || targetTreeNodeCollection.Count < maxNodesToAdd)
                 if (Thread.CurrentThread.IsAlive)
                     targetTreeNodeCollection.Add(newNode);
         });
 }
开发者ID:njmube,项目名称:FluentSharp,代码行数:14,代码来源:O2Forms.cs

示例2: mapFile

 public static string mapFile(string fileToMap,Control hostControl)
 {
     if (hostControl != null)
         return (string) hostControl.invokeOnThread(() =>
                                                        {
                                                            if (fileToMap != null && false == File.Exists(fileToMap))
                                                            {
                                                                var resolvedFileMapping =
                                                                    new resolvedFileMapping(fileToMap);
                                                                if (resolvedFileMapping.resolveFileMapping())
                                                                    return resolvedFileMapping.sMappedFile;
                                                                else
                                                                    DI.log.error(
                                                                        "in SourceCodeMappingsUtils.mapFile, could not map file: {0}",
                                                                        fileToMap);
                                                            }
                                                            return fileToMap;
                                                        });
     return mapFile(fileToMap);
 }
开发者ID:pusp,项目名称:o2platform,代码行数:20,代码来源:SourceCodeMappingsUtils.cs

示例3: SetFocusOnControl

 public static void SetFocusOnControl(Control targetControl, int sleepBeforeFocus)
 {
     // first start a separate thread to wait before jumping into the targetControl to set the focus
     O2Thread.mtaThread(
         ()=>
             {
             Thread.Sleep(sleepBeforeFocus);
             targetControl.invokeOnThread(()=>targetControl.Focus());
             });
 }
开发者ID:pusp,项目名称:o2platform,代码行数:10,代码来源:O2Forms.cs

示例4: findParentThatHostsControl

 public static Control findParentThatHostsControl(Control controlToFind)
 {
     return controlToFind.invokeOnThread(
         () =>{
                 if (controlToFind != null)
                 {
                     IEnumerable<Control> results = from Control control in controlToFind.Parent.Controls
                                                    where control == controlToFind
                                                    select controlToFind.Parent;
                     if (results.Count() == 1)
                         return results.First();
                     findParentThatHostsControl(controlToFind.Parent);
                 }
                 return null;
         });
 }
开发者ID:njmube,项目名称:FluentSharp,代码行数:16,代码来源:O2Forms.cs


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