2009-11-05 5 views

답변

1

ElementHost을 사용해야합니다.

을하는 데 도움이

ElementHost es = new ElementHost(); 
es.HostContainer.Children.Add(screen); // where screen is your wpf window or user control 

es.Dock = Windows.Forms.DockStyle.Fill; // probably want to fill the element host. Not necessary 
somePanel.Controls.Add(es); // add the element host to a panel on your Winform or the form itself 

희망

관련 문제