WP8:没有可用的弹出窗口? [英] WP8: no popup available?

查看:82
本文介绍了WP8:没有可用的弹出窗口?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想对一个小的弹出窗口进行编程以获取一些用户输入(文本区域,输入字段和两个按钮).哪些组件可以托管这些组件?显然没有Popup类?

I'd like to programm a tiny popup to get some user input (a textarea, a input field and two buttons). What component could host these components? Apparently there is no Popup class?

推荐答案

这是一个基本弹出窗口

<Popup  Name="m_Popup"  IsOpen="False" Opened="OnPoputOpen" Closed="OnPopupClose" >
        <Grid >
            <Grid.RowDefinitions>
                <RowDefinition Height ="auto"/>
                <RowDefinition Height="auto"/>
                <RowDefinition Height="auto"/>                                
            </Grid.RowDefinitions> 

            <TextBox Name="m_TextBox" Grid.Row="0"/>
            <Button Name="m_Button1" Grid.Row="1"/>
            <Button Name="m_Button2" Grid.Row="2"/>
        </Grid>
    </Popup>

您可以通过IsOpen控制可见性.这是

You control the visibility with IsOpen. Here is a link to Popup Class

祝你好运(:

这篇关于WP8:没有可用的弹出窗口?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆