<small id='na03K'></small><noframes id='na03K'>

    • <bdo id='na03K'></bdo><ul id='na03K'></ul>
    <legend id='na03K'><style id='na03K'><dir id='na03K'><q id='na03K'></q></dir></style></legend>

    <i id='na03K'><tr id='na03K'><dt id='na03K'><q id='na03K'><span id='na03K'><b id='na03K'><form id='na03K'><ins id='na03K'></ins><ul id='na03K'></ul><sub id='na03K'></sub></form><legend id='na03K'></legend><bdo id='na03K'><pre id='na03K'><center id='na03K'></center></pre></bdo></b><th id='na03K'></th></span></q></dt></tr></i><div id='na03K'><tfoot id='na03K'></tfoot><dl id='na03K'><fieldset id='na03K'></fieldset></dl></div>
      1. <tfoot id='na03K'></tfoot>

      2. 将非模态表单重新映射到现有应用程序

        Reparent non-modal form to existing application(将非模态表单重新映射到现有应用程序)
        <legend id='1ThT3'><style id='1ThT3'><dir id='1ThT3'><q id='1ThT3'></q></dir></style></legend>
          <tbody id='1ThT3'></tbody>

              <bdo id='1ThT3'></bdo><ul id='1ThT3'></ul>
              • <i id='1ThT3'><tr id='1ThT3'><dt id='1ThT3'><q id='1ThT3'><span id='1ThT3'><b id='1ThT3'><form id='1ThT3'><ins id='1ThT3'></ins><ul id='1ThT3'></ul><sub id='1ThT3'></sub></form><legend id='1ThT3'></legend><bdo id='1ThT3'><pre id='1ThT3'><center id='1ThT3'></center></pre></bdo></b><th id='1ThT3'></th></span></q></dt></tr></i><div id='1ThT3'><tfoot id='1ThT3'></tfoot><dl id='1ThT3'><fieldset id='1ThT3'></fieldset></dl></div>

                <small id='1ThT3'></small><noframes id='1ThT3'>

                  <tfoot id='1ThT3'></tfoot>
                  本文介绍了将非模态表单重新映射到现有应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我希望能够在现有应用程序中显示非模态表单.目前我可以这样做:

                  I would like to be able to show a non-modal form in an already existing application. At the moment I can do something like:

                  myform.ShowDialog(handleToApp);
                  

                  但这将创建一个以应用程序为父对象的模态表单,而我真正要寻找的不是模态表单,因此当表单失去焦点时,它不会破坏控制流程并纠缠用户不要关闭.

                  but that will create a modal form parented to the application and what I'm really looking for something that isn't modal so when the form loses focus it won't break the flow of control and pester the user about not being closed.

                  有谁知道我如何或是否可以做我正在寻找的事情?

                  Does anyone know how or if I can do what I'm looking for?

                  推荐答案

                  我找到了我要找的东西,你必须创建一个如下所示的类:

                  I found what I was looking for, you have to make a class which looks like this:

                  public class MapinfoWindowHandle : System.Windows.Forms.IWin32Window
                      {
                          private IntPtr handle;
                          public MapinfoWindowHandle(IntPtr hWnd)
                          {
                              handle = hWnd;
                          }
                  
                          #region IWin32Window Members
                  
                          IntPtr System.Windows.Forms.IWin32Window.Handle
                          {
                              get { return handle; }
                          }
                  
                          #endregion
                      }
                  

                  然后你可以这样做:

                  IntPtr windowhandle = new IntPtr(hWnd);
                  MyForm.Show(new MapinfoWindowHandle(windowhandle));
                  

                  这篇关于将非模态表单重新映射到现有应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Populate ListBox with a IEnumrable on another thread (winforms)(在另一个线程(winforms)上使用 IEnumrable 填充 ListBox)
                  listbox selected item give me quot; System.Data.DataRowViewquot; , C# winforms(列表框选择的项目给我quot;System.Data.DataRowView, C# Winforms)
                  Cannot remove items from ListBox(无法从列表框中删除项目)
                  Preventing ListBox scrolling to top when updated(更新时防止列表框滚动到顶部)
                  Drag and drop from list to canvas on windows phone with MVVM(使用 MVVM 在 Windows 手机上从列表拖放到画布)
                  Deselection on a WPF listbox with extended selection mode(具有扩展选择模式的 WPF 列表框上的取消选择)
                        <bdo id='V3S0D'></bdo><ul id='V3S0D'></ul>
                        <legend id='V3S0D'><style id='V3S0D'><dir id='V3S0D'><q id='V3S0D'></q></dir></style></legend>

                            <tbody id='V3S0D'></tbody>
                          <tfoot id='V3S0D'></tfoot>

                        1. <i id='V3S0D'><tr id='V3S0D'><dt id='V3S0D'><q id='V3S0D'><span id='V3S0D'><b id='V3S0D'><form id='V3S0D'><ins id='V3S0D'></ins><ul id='V3S0D'></ul><sub id='V3S0D'></sub></form><legend id='V3S0D'></legend><bdo id='V3S0D'><pre id='V3S0D'><center id='V3S0D'></center></pre></bdo></b><th id='V3S0D'></th></span></q></dt></tr></i><div id='V3S0D'><tfoot id='V3S0D'></tfoot><dl id='V3S0D'><fieldset id='V3S0D'></fieldset></dl></div>

                          <small id='V3S0D'></small><noframes id='V3S0D'>