zoukankan      html  css  js  c++  java
  • 手把手玩转win8开发系列课程(21)

    这节,有三个议程①定位控件②显示用户控件③将用户控件添加到项目中

    (1)定位控件

    Metro布局控件没有提供了一种简单相对定位的布局方式,因此,在项目中你需要做一下灵活的处理了。下面就展示了我在Flyouts文件夹下写的FlyoutHelper类的情况,他定义了一个ShowRelativeToAppBar的方法。这个方法的职责是十分单一的,就是讲这个 用户控件定位到appBar Button控件旁边了。为了实现这样的效果,我们所需要的是一个popup control,一点击的这个按钮,就出现上述弹出用户控件的情况,尽管,这个方法看起来并不是那么的好了,但这也是我能解决这个问题想到的唯一的解决方法。

     1 using System;
     2 using Windows.Foundation;
     3 using Windows.UI.Xaml;
     4 using Windows.UI.Xaml.Controls;
     5 using Windows.UI.Xaml.Controls.Primitives;
     6 namespace MetroGrocer.Flyouts {
     7   public class FlyoutHelper {
     8     public static void 
     9 //显示控件的相对定位的方法
    10 //通过一个相应的代理来解决的
    11 //计算的思路是计算前后左右的距离
    12 
    13 ShowRelativeToAppBar(Popup popup, Page page,
    14       AppBar appbar, Button button) {
    15       Func<UIElement, UIElement, Point> getOffset =
    16         delegate(UIElement control1, UIElement control2) {
    17           return control1.TransformToVisual(control2)
    18             .TransformPoint(new Point(0, 0));
    19         };
    20       Point popupOffset = getOffset(popup, page);
    21       Point buttonOffset = getOffset(button, page);
    22       popup.HorizontalOffset = buttonOffset.X - popupOffset.X
    23         - (popup.ActualWidth / 2) + (button.ActualWidth / 2);
    24       popup.VerticalOffset = getOffset(appbar, page).Y
    25         - popupOffset.Y - popup.ActualHeight;
    26       if (popupOffset.X + popup.HorizontalOffset
    27         + popup.ActualWidth > page.ActualWidth) {
    28         popup.HorizontalOffset = page.ActualWidth
    29           - popupOffset.X - popup.ActualWidth;
    30       } else if (popup.HorizontalOffset + popupOffset.X < 0) {
    31         popup.HorizontalOffset = -popupOffset.X;
    32       }
    33     }
    34   }
    35 }

    Popup的位置是出现在appBar的前面,他隐藏在屏幕的左部和右部。至于要我深入源代码的讲解的话,我看还是没有这么样必要吧,因为可能win8正式版上面,这样做的更好吧。至于,你碰到过某个问题吧,我这里告诉你他的先查相应的资料,再深挖他的实质,这是我多年来的编程经验  

    ShowRelativeToAppBar方法是展示弹出窗口周围位置的对话框,这个方法就是用于判断HorizonOffset判断其中的距离,VerticalOffset判断其中的垂直的距离。这样经过一定处理,能够实现了定位了。
     

    (2)展示这个弹出对话框

    至于HomeZipCodeFlyout类除了展示数据以外,另外一个职责就是显示和隐藏这个弹出控件,这里有很多很多方法使其弹出吗,我这里当然是使用最简单的解决方案。下列源代码展示了一种数据绑定的方式。

    1 <!--数据绑定方式显示弹出的形式-->
    2 <TextBox Height="40" Width="150" Text="{Binding Path=HomeZipCode, Mode=TwoWay}" />

    至于数据绑定,默认是one-way绑定,这就意味着我只能页面展示的数据随着后台数据变,反之亦然。而two-way方式,则是意味着后台数据(View Model)与前台展示互相关联、

    特别提醒,我这里没有必要设置dataContext进行了绑定,但你一旦把这个用户控件添加到页面这种去了,由于是页面级对象,他也继承了DataContext这个属性、

    言归正卷,怎么弹出隐藏控件了,隐藏此控件很好解决嘛,可以通过ok按钮的控制解决嘛。由于two-way绑定的模式,我根本不用担心数据是否保持同步的问题。当然了,不可能有事情十全十美,这么做的最大的缺点就是在控件消失前,他已经更新数据多次,影响效率,还有影响界面中另外viewmodel的界面了。但对于HomeZip这个属性,也很好,因为zip是唯一的。所以了这种方法不失为一个解决这个问题的理想方法。

    (3)向程序中添加FlyOut控件

    怎么将其添加到主界面上出了,你就可以用以下代码:

     1 <!--flyouts 所在的命名空间-->
     2 <Page
     3   x:Class="MetroGrocer.Pages.ListPage"
     4   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     5   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     6   xmlns:local="using:MetroGrocer.Pages"
     7 xmlns:flyouts="using:MetroGrocer.Flyouts"
     8   xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
     9   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    10   mc:Ignorable="d">
    11   <Grid Background="{StaticResource AppBackgroundColor}">
    12     <Grid.RowDefinitions>
    13       <RowDefinition/>
    14       <RowDefinition/>
    15     </Grid.RowDefinitions>
    16     <Grid.ColumnDefinitions>
    17       <ColumnDefinition/>
    18       <ColumnDefinition/>
    19     </Grid.ColumnDefinitions>
    20     <StackPanel Grid.RowSpan="2">
    21       // …contents removed for brevity
    22     </StackPanel>
    23     <StackPanel Orientation="Vertical" Grid.Column="1">
    24       // …contents removed for brevity
    25     </StackPanel>
    26 <StackPanel Orientation="Vertical" Grid.Column="1" Grid.Row="1">
    27       // …contents removed for brevity
    28     </StackPanel>
    29 <!--导入的用户控件-->
    30   <flyouts:HomeZipCodeFlyout x:Name="HomeZipFlyout"/>
    31   </Grid>
    32   <Page.BottomAppBar>
    33     // …contents removed for brevity
    34   </Page.BottomAppBar>
    35 </Page>

    在xaml中引用命名空间很简单,就像下面一样:

    1 xmlns:flyouts="using:MetroGrocer.Flyouts"

    最重要的,不是引用什么命名空间,而是引用命名空间以后,引用其中的用户控件,用户控件的源代码如下所示:

    1 <flyouts:HomeZipCodeFlyout x:Name="HomeZipFlyout"/>

    注意了,该弹出窗口是在grid控件中了,尽管他不是立马显示了,但一定布局在grid控件中了,这是一个原则,主页面才能更好控制子元素。

    哝——这样一个控件就能添加到项目中了

  • 相关阅读:
    [转]Worksheet.Change Event (Excel)
    [转]EXCEL如何使用动态公式
    [转]用NPOI操作EXCEL--数据有效性
    [转]How to insert a row between two rows in an existing excel with HSSF (Apache POI)
    [转]Excel
    [转]asp.net解决高并发的方案.
    [转]ActionScript 3.0入门:Hello World、文件读写、数据存储(SharedObject)、与JS互调
    Programming ActionScript 3.0 for Flash
    页游 《大皇帝》
    [转]Flash ActionScript2.0面向对象游戏开发-推箱子
  • 原文地址:https://www.cnblogs.com/manuosex/p/2804531.html
Copyright © 2011-2022 走看看