windows 8.1 MessageDialog
private Popup p;
private void Button_Click(object sender, RoutedEventArgs e)
{
p=new Popup();
DengluDemo dl=new DengluDemo();
dl.Width = ;
dl.Height = ;
dl.Margin = new Thickness(, , , );
//if (p != null || p.IsOpen == true)
//{
// return;
//}
MessageDialog md = new MessageDialog("是否退出登陆");
md.Commands.Add(new UICommand("确定", (a) =>
{ }, ));
md.Commands.Add(new UICommand("取消", (a) =>
{ }, ));
md.DefaultCommandIndex = ;
md.CancelCommandIndex = ;
var cmd = md.ShowAsync();
dl.eh = (a, b) =>
{
p.Child = dl;
p.IsOpen = true;
};
p.Child = dl;
p.IsOpen = true; }
}
<UserControl
x:Class="vs2013win8._1.DengluDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:vs2013win8._1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="260"
d:DesignWidth="1360"> <Grid>
<Grid.Background>
<SolidColorBrush Color="Black" Opacity="0.7"></SolidColorBrush>
</Grid.Background>
<StackPanel Background="LightSeaGreen" Orientation="Vertical" > <StackPanel Orientation="Horizontal" Margin="428,40,0,0">
<TextBlock Text="用户名:" FontSize="25" Width="80"></TextBlock>
<TextBox x:Name="txt_Name" Width="273" Margin="20,0,0,0"></TextBox>
</StackPanel> <StackPanel Orientation="Horizontal" Margin="428,40,0,0">
<TextBlock Text="密 码:" FontSize="25" Width="80"></TextBlock>
<PasswordBox x:Name="txt_Password" Width="273" Margin="20,0,0,0"></PasswordBox>
</StackPanel> <StackPanel Orientation="Horizontal" Margin="428,30,0,0">
<HyperlinkButton Tapped="Button_Tapped_3" FontSize="18" Foreground="White">还没有账号 点击去注册</HyperlinkButton>
<Button Tapped="Button_Tapped_1" Content="登录" FontSize="20" Foreground="White" Background="LightSeaGreen" Width="150" Height="49" Margin="180,0,0,0"/>
<Button Tapped="Button_Tapped_2" Content="取消" FontSize="20" Foreground="White" Background="LightSeaGreen" Width="153" Height="49" Margin="20,0,0,0"/>
</StackPanel>
</StackPanel>
</Grid>
</UserControl>
public EventHandler eh;
private void Button_Tapped_1(object sender, TappedRoutedEventArgs e)
{
if (eh != null)
{
eh(this,null);
}
}
windows 8.1 MessageDialog的更多相关文章
- MessageDialog
var messageDialog = new Windows.UI.Popups.MessageDialog("Media player components unavailable&qu ...
- xamarin UWP中MessageDialog与ContentDialog的区别
MessageDialog与ContentDialog的异同点解析: 相同点一:都是uwp应用上的一个弹窗控件.都能做为弹出应用. 相异点一:所在命名空间不同,MessageDialog在Window ...
- Windows Phone 二十、陀螺仪
API 示例 // 获取陀螺仪传感器监听对象 Gyrometer gyrometer = Gyrometer.GetDefault(); if (gyrometer == null) { await ...
- Windows Phone 十四、磁贴通知
磁贴(Tile) Windows Phone 磁贴种类: 小尺寸 SmallLogo:71x71: Square71x71 中等 Logo:150x150: Square150x150 宽 WideL ...
- Windows Phone 十三、吐司通知
弹出通知对话框 <Grid> <Button Content="弹出通知" Click="Button_Click"/> </Gr ...
- Windows Store 开发总结——文件操作
1.读取Isolated Storage 每个Metro程序都有三个文件夹:Local,Roaming,Temp.每个文件夹的访问方法都是相同的. Local用于将数据存储在本地,这是程序特定的文件夹 ...
- 重新想象 Windows 8 Store Apps (36) - 通知: Tile 详解
[源码下载] 重新想象 Windows 8 Store Apps (36) - 通知: Tile 详解 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 通知 Tile ...
- Devlop Win 8 and Windows Phone App for Microsoft Dynamics CRM
Microsoft Dynamics CRM App for Windows Phone http://www.windowsphone.com/en-us/store/app/dynamics-cr ...
- Windows 8 动手实验系列教程 实验8:Windows应用商店API
动手实验 实验 8: Windows应用商店API 2012年9月 简介 编写Windows应用商店应用最令人瞩目的理由之一是您可以方便地将它们发布到Windows应用商店.考虑到世界范围内目前有超过 ...
随机推荐
- 新建一个mybatis HelloWorld
1.下载mybatis https://github.com/mybatis/mybatis-3/ 没有梯子好像打不开 下载一个最新版本,我这里下载的是mybatis-3.4.1.zip 里面有myb ...
- [ActionScript 3.0] AS3.0 本机鼠标指针
Flash Player 10.2添加了内置的本机鼠标指针(native mouse cursor)支持,虽然在之前的版本里我们可以侦听MouseEvent事件来模拟鼠标指针,但是在有了原生的本机鼠标 ...
- jQuery 中屏蔽浏览器的F5刷新功能
//支持ie(6,7,8),火狐,谷歌,opera,等主流浏览器 $(document).keydown(function(e){ e=window.event||e; if(e.keyCode==1 ...
- Adobe AIR socket complicating 导致 socket RST
基于socket实现HTTP协议 并发请求AB,A为HTTP请求,B为socket请求. A的请求服务器返回数据很短,包体长度只有35,且客户端收到包头后就断开连接,同时A连接的服务器也断开了连接, ...
- jQuery学习笔记----入门
基础语法是:$(selector).action() 美元符号定义 jQuery 选择符(selector)“查询”和“查找” HTML 元素 jQuery 的 action() 执行对元素的操作
- java常用面板
public class JPanelTest extends JFrame{ public JPanelTest(){ Container c=getContentPane(); ...
- 紧张:飞测独家のJmeter秘籍,限量发放(续篇2)
飞测说:一些朋友问,我如何使用获取资料(点击这里获取)?小怪我花了点时间在这里介绍下该资料的功能和意义,另外也整理了一篇操作指引文档. 1.fiddler导出jmx格式的dll文件V4.0版本 功能: ...
- JS 中数组的排序和去重
在 PHP 中,数组有很多排序方法,不过其他语言的数组中大概是不会像 JS 的数组一样,包罗万象,啥都通吃的.所以 JS 的数组排序情况就略多一些了. 简单粗暴的排序: 赤果果的sort: var ...
- Win2D 官方文章系列翻译 - DPI (每英寸点数)和 DIPs(设备独立像素)
本文为个人博客备份文章,原文地址: http://validvoid.net/win2d-dpi-dips/ 本文旨在解释物理像素与设备独立像素(DIPs, device independent pi ...
- Jquery获得服务器控件的方法
由于ASP.NET网页运行后,服务器控件会随机生成客户端id,jquery获取时候不太好操作,google了下,总结有以下3种方法: 服务器控件代码: <asp:TextBox ID=" ...