1

我有一个使用不同选项卡的 winforms 应用程序。我想使用 MEF 来添加更多在启动时导入的选项卡。我很难弄清楚如何去做。

编辑:这就是我所做的。

我采用了主要的 winforms 类并将其剥离,以便其中只有一个 TabControl,我通过一个接口向每个 TabPage 公开它。然后,我还创建了第二个接口 ITab,我将其与 MEF 一起使用以获取标签页,然后将其添加到主 tabcontrol。要创建一个新的标签页,我只需添加一个新表单,然后向其中添加一个 tabcontrol 并设计标签页。我将 ITab 界面添加到新表单中,并添加了以下将页面移动到主表单的方法。

public void MoveTabPages(IForm fm)
{
   while (this.tabControl1.Controls.Count > 0)
   {
      fm.tab.Controls.Add(this.tabControl1.Controls[0]);
   }
}

只要事件委托和所有这些好东西只引用他们的表单类中的内容,它们就可以工作。

这是完整的代码。


//Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;

namespace Winforms_Mef
{
   public interface IForm
   {
      TabControl tab { get; }
   }

   public interface ITab
   {
      void MoveTabPages(IForm fm);
   }

   public partial class Form1 : Form,IForm
   {
      private CompositionContainer _container;

      [Import]
      public IEnumerable Tabs { get; set; }

      public TabControl tab
      {
         get { return tabControl1; }
      }

      public Form1()
      {
         Compose();
         InitializeComponent();

         foreach (ITab tab in Tabs)
         {
            tab.MoveTabPages(this);
         }

      }

      private void Compose()
      {
         var catalog =new AssemblyCatalog(typeof(ITab).Assembly);
         var batch = new CompositionBatch();
         batch.AddPart(this);

         _container =new CompositionContainer(catalog);
         _container.Compose(batch);
      }
   }
}


//Form2.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ComponentModel.Composition;

namespace Winforms_Mef
{
   [Export(typeof(ITab))]
   public partial class Form2 : Form,ITab
   {
      public Form2()
      {
         InitializeComponent();
      }


      public void MoveTabPages(IForm fm)
      {
         while (this.tabControl1.Controls.Count > 0)
         {
            fm.tab.Controls.Add(this.tabControl1.Controls[0]);
         }
      }
   }
}


4

2 回答 2

2

在继续之前,我认为您的 Compose 方法需要清理。为什么要将容器和目录添加到批处理中?

batch.AddExportedObject(_container);
batch.AddExportedObject(catalog);

AddExportedObject用于将预先存在的对象实例添加为导出,尝试将容器和目录用作导出没有多大意义

privat void Compose()
{
    var catalog =
        new AssemblyCatalog(typeof(ITab).Assembly);

    var batch =
        new CompositionBatch();
    batch.AddPart(this);

    var container =
        new CompositionContainer(catalog);
    container.Compose(batch);
}
于 2009-03-19T07:38:44.010 回答
0

这是一个通用版本,允许您使用 Mef 将您的 winforms 表单替换为另一个。有一个使用 Mef 公开的 IForm 接口,它有一个名为 public void MoveForm(Form form) 的方法,它将新表单复制到旧表单上。

这是代码。



//// Form1 default form
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;

namespace Winforms_Mef
{
   public interface IForm
   {
      void MoveForm(Form form);
   }

   public partial class Form1 : Form 
   {
      private CompositionContainer _container;

      [Import]
      public IEnumerable Forms { get; set; }

      public Form1()
      {
         Compose();
         InitializeComponent();

         foreach (IForm form in Forms)
         {
            this.SuspendLayout();
            this.Controls.Clear(); // wipe out the current version of the form
            this.ResumeLayout(false);
            form.MoveForm(this);
         }

      }

      private void Compose()
      {
         var catalog = new AssemblyCatalog(typeof(IForm).Assembly);
         var batch = new CompositionBatch();
         batch.AddPart(this);

         _container = new CompositionContainer(catalog);
         _container.Compose(batch);
      }
   }
}

//// Form 2 uses Mef to replace Form1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.ComponentModel.Composition;

namespace Winforms_Mef
{
   [Export(typeof(IForm))]
   public partial class Form2 : Form,IForm
   {
      public Form2()
      {
         InitializeComponent();
      }


      public void MoveForm(Form form)
      {
         this.SuspendLayout();
         form.SuspendLayout();

         form.AutoScaleDimensions = this.AutoScaleDimensions;
         form.AutoScaleMode=this.AutoScaleMode;
         form.ClientSize=this.ClientSize;
         form.Name=this.Name;
         form.Text=this.Text;
         while (this.Controls.Count > 0)
         {
            form.Controls.Add(this.Controls[0]);
         }

         this.ResumeLayout(false);
         form.ResumeLayout(false);
      }
   }
}



于 2009-03-19T15:44:14.117 回答