开发者

How can I prevent the user from resizing the silverlight out-of-browser window?

开发者 https://www.devze.com 2022-12-27 20:54 出处:网络
I have a silverlight app which can be installed as out-of-browser. I\'ve defined the Height and Width in the main UserControl.

I have a silverlight app which can be installed as out-of-browser.

I've defined the Height and Width in the main UserControl.

I'v开发者_如何转开发e defined the same Height and Width in the OutOfBrowserSettings.xml file.

But the user can still resize the out-of-browser frame window. How do I prevent this?


The window hosting the Silverlight application cannot be controlled by the application when it is running with normal permissions, that would be a security issue.

However, if you install the OOB application with elevated permissions, you can change the chrome of the window and define your own. This will prevent the resizing (except of course if you explicitly implement resizing with the custom chrome).

To change the chrome options, use the OOB Settings in the project properties.

How can I prevent the user from resizing the silverlight out-of-browser window?


I did not want to give up the window border. This is not pretty, but here is what I am doing for now.

    Host.Content.Resized += new EventHandler(Content_Resized);
    ...
    void Content_Resized(object sender, EventArgs e)
    {
        if (IsRunningOutOfBrowser)
        {
            MainWindow.Width = 800;
            MainWindow.Height = 448;
        }
    }


I don't think you can. It seems to be another one of those "User is King" choices.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号