绑定到XAML中的Window.Current.Bounds.Width

时间:2012-11-20 04:46:55

标签: xaml microsoft-metro windows-runtime winrt-xaml

我在LayoutAware页面上有一个弹出控件。

我真正想要的是弹出窗口填满屏幕。

我认为解决方案是使用Window.Current.Bounds.Height / Width在弹出控件内部的网格上设置相应的属性。

我不想使用代码隐藏文件来设置这些属性。我希望能够绑定到XAML中的Window.Current.Bounds.Height。

我可以这样做吗?

有没有更好的方法让弹出窗口填满屏幕?

2 个答案:

答案 0 :(得分:5)

您可以通过编写高度和宽度的转换器来实现。

public class WidthConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, string language)
    {
        return Window.Current.Bounds.Width;
    }

    public object ConvertBack(object value, Type targetType, object parameter, string language)
    {
        throw new NotImplementedException();
    }
}

public class HeightConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, string language)
    {
        return Window.Current.Bounds.Height;
    }

    public object ConvertBack(object value, Type targetType, object parameter, string language)
    {
        throw new NotImplementedException();
    }
}

在页面资源部分添加此内容 -

    <common:WidthConverter x:Key="wc" />
    <common:HeightConverter x:Key="hc" />

将它们用于弹出窗口 -

        <Popup x:Name="myPopup"  >
            <Grid  Background="#FFE5E5E5" Height="{Binding Converter={StaticResource hc}}" Width="{Binding Converter={StaticResource wc}}" />
        </Popup>

答案 1 :(得分:4)

您可以使用转换器(请参阅打字员) 或者使用静态类。

在App.xaml中:

<datamodel:Foo x:Name="FooClass" />
xmlns:datamodel="using:MyProject.Foo.DataModel"

在你的xaml中:

Source="{Binding Source={StaticResource FooClass}, Path=Width}"

其中Width是类中返回Window.Current.Bounds.Width的属性。

示例:public double Width{get{return Window.Current.Bounds.Width;}}

问候。