Silverlight开发工具在实际使用中,有很多功能和使用技巧值得我们去深入的探讨,总结,以此来方便我们的开发程序效率。在这里就介绍一下有关Silverlight捕获事件的实现方法。#t#
有时候,我们需要在全屏模式和普通模式之间切换时,添加一个其它的代码,这时可以使用事件FullScreenChanged。
实现Silverlight捕获事件处理
- private void Content_FullScreen
Changed(object sender, EventArgs e)- {
- Content contentObject = Application.
Current.Host.Content;- if (contentObject.IsFullScreen)
- {
- toggleButton.Background = new
SolidColorBrush(Colors.Green);- toggleButton.Content = "Full
Screen Mode";- }
- else
- {
- toggleButton.Background = new
SolidColorBrush(Colors.Red);- toggleButton.Content =
"Normal Mode";- }
- }
在普通模式和全屏模式之间切换时,改变按钮的背景色和文字。
完整的Silverlight捕获事件代码如下:
- public partial class Page :
UserControl- {
- public Page()
- {
- InitializeComponent();
- Application.Current.Host.Content.
FullScreenChanged += new
EventHandler(Content_FullScreenChanged);- }
- private void toggleButton_Click
(object sender, RoutedEventArgs e)- {
- Content contentObject =
Application.Current.Host.Content;- contentObject.IsFullScreen =
!contentObject.IsFullScreen;- }
- private void Content_FullScreen
Changed(object sender, EventArgs e)- {
- Content contentObject = Application.
Current.Host.Content;- if (contentObject.IsFullScreen)
- {
- toggleButton.Background = new
SolidColorBrush(Colors.Green);- toggleButton.Content = "Full
Screen Mode";- }
- else
- {
- toggleButton.Background = new
SolidColorBrush(Colors.Red);- toggleButton.Content =
"Normal Mode";- }
- }
- }
Silverlight捕获事件的相关实现方法就为大家介绍到这里。
网站名称:Silverlight捕获事件操作方法介绍
文章起源:http://www.mswzjz.cn/qtweb/news36/432036.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能