我有一个简单的应用程序,我想更改加载内容时的大小。
例如,假设我加载了大小为100的图像。
如何更改正在渲染silverlight的容器的大小?
答案 0 :(得分:1)
解决方案 -
您需要浏览浏览器对象,而不是浏览页面。
width = 200;
height = 200;
var host = HtmlPage.Document.HtmlPage.Plugin.Id);
host.SetStyleAttribute("width", width.ToString());
host.SetStyleAttribute("height", height.ToString());
答案 1 :(得分:1)
一旦容器调整大小,您就会收到通知:
public Page()
{
InitializeComponent();
App.Current.Host.Content.Resized += (s, e) =>
{
// Place here your layour resize code...
this.Width = App.Current.Host.Content.ActualWidth;
this.Height = App.Current.Host.Content.ActualHeight;
};
}