我在Excel 2003 ActionsPane中托管WPF图表。图表设置为水平和垂直拉伸,但是,尽管ElementHost和图表水平填充ActionsPane,但我还没有找到一种使ElementHost垂直填充的方法。似乎对ElementHost的布局没有任何影响的属性是Height和Size属性。 Anchor,Dock,AutoSize似乎都不会影响ActionsPane对象或ElementHost对象的布局。
我想念什么吗?
问候,
丹尼
// A snippet from ThisWorkbook.cs
public partial class ThisWorkbook
{
private void ThisWorkbook_Startup(object sender, System.EventArgs e)
{
var ap = Globals.ThisWorkbook.ActionsPane;
ap.Clear();
ap.Visible = true;
var plotControl1 = new Swordfish.WPF.Charts.TestPage();
var elementHost1 = new System.Windows.Forms.Integration.ElementHost();
elementHost1.AutoSize = true; // Doesn't seem to have an effect.
elementHost1.Child = plotControl1;
ap.Controls.Add(elementHost1);
}
最佳答案
创建一个名为我的ActionPane的自定义WPF表单并将其托管在ElementHost中。这是我完成ElementHost本身的方式:
private void ThisDocument_Startup(object sender, System.EventArgs e)
{
ActionPane actionPaneControl = new ActionPane();
this.ActionsPane.Resize += new EventHandler(ActionsPane_Resize);
this.ActionsPane.Controls.Add(new ElementHost { Child = actionPaneControl, AutoSize = true });
}
基本上,我订阅了ActionsPane Resize事件,并根据该事件确定ElementHost对象的大小。这给WPF控制(同时具有vert和horiz拉伸)大小调整以及Office应用程序窗口带来了额外的好处。
void ActionsPane_Resize(object sender, EventArgs e)
{
((this.ActionsPane.Controls[0] as ElementHost).Child as ActionPane).Height = this.ActionsPane.Height;
}