What Controls are new for windows phone 8.1

http://www.jayway.com/2014/04/08/windows-phone-8-1-for-developerswhat-controls-are-new-2/

What controls are removed between version 8.0 to 8.1

First we start to look at what has been removed from Windows Phone 8.0 and how to replace them in Windows Phone 8.1. I have included several links to MSDN where the control is described. Please note that this post is directed to those that want to transform their Windows Phone 8.1 Silverlight 8.0 app to a Windows Phone Windows Runtime 8.1 app. If you simply upgrade to an Windows Phone 8.1 Silverlight app, Everything stays the same and your code will run unchanged.

Panorama is now Hub

Let’s start from the beginning of an app. The first thing one notices is that the panorama is gone. The replacement is the Hub control. The Hub control has HubSection instead of PanoramaItem, and the HubSection must have a DataTemplate. The PanoramaItem could contain any container so here is a difference. Another difference is that the Hub control does not go around and around as the Panorama does if there are only two HubSections. If there are three it works just like the Panorama. There are some changes in the properties as well, the most important being Title in Panorama is now Header in the Hub.

C#

<hub Header="My header">
<hubSection Header="My sub header">
<dataTemplate>
<grid />
</dataTemplate>
</hubSection>
<hubSection Header="My sub header 2">
<dataTemplate>
<grid />
</dataTemplate>
</hubSection>
</hub>

1

2

3

4

5

6

7

8

9

10

11

12

<hub Header="My header">

<hubSection Header="My sub header">

<dataTemplate>

<grid />

</dataTemplate>

</hubSection>

<hubSection Header="My sub header 2">

<dataTemplate>

<grid />

</dataTemplate>

</hubSection>

</hub>

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.hub.aspx

LongListSelector is now SemanticZoom

Instead of using the LongListSelector we now have SemanticZoom. SemanticZoom is not a list but much more useful. There are two state of the SemanticZoom, ZoomedInView and ZoomedOutView. As the names imply you have two states in and out. Two make a control similar to the LongListSelector one can use a List in zoomed in and a GridView in zoomed out and with them simulate a LongListSelector. But the SemanticZoom control can be used for much more, example list of places and a map or when you have subsections make a fast navigate on zoomed out etc.

C#

<semanticZoom>
<semanticZoom.ZoomedInView>
<listView/>
</semanticZoom.ZoomedInView>
<semanticZoom.ZoomedOutView>
<gridView/>
</semanticZoom.ZoomedOutView>
</semanticZoom>

1

2

3

4

5

6

7

8

<semanticZoom>

<semanticZoom.ZoomedInView>

<listView/>

</semanticZoom.ZoomedInView>

<semanticZoom.ZoomedOutView>

<gridView/>

</semanticZoom.ZoomedOutView>

</semanticZoom>

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.semanticzoom.aspx

WebBrowser is now WebView

For the developer it is more or less just a rename but under the hood a lot has been done to really integrate the WebView in the XAML-tree. The WebBrowser was really a browser window that opened on top of the app which infused all sort of problems. Now the WebView is integrated in the XAML tree which enables us to mix XAML and HTML content really nice and easy.

<webView />

1

<webView />

Really nice MSDN link: http://blogs.windows.com/windows/b/appbuilder/archive/2013/07/17/what-s-new-in-webview-in-windows-8-1.aspx

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.webview.aspx

DrawingSurface and DrawingSurfaceBackgroundGrid

Instead of using these we should use SwapChainPanel instead, as we do in Windows 8.1. The semantics to work with this control is slightly different, but once understood it’s more or less the same. If you upgrade to Silverlight 8.1 these controls still remains.

http://msdn.microsoft.com/en-US/library/windows/apps/windows.ui.xaml.controls.swapchainpanel

MultiScaleImage

This control has been deprecated with no replacement control. Working with the ordinary Image control seems to be the best bet. If you upgrade to Silverlight 8.1 this control still remains.

RichTextBox is now RichTextBlock

Just swap the name from RichTextBox to RichTextBlock and you are good to go.

C#

<richTextBlock>
<paragraph>
Some text with bold <bold>in it</bold>
</paragraph>
</richTextBlock>

1

2

3

4

5

<richTextBlock>

<paragraph>

Some text with bold <bold>in it</bold>

</paragraph>

</richTextBlock>

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.richtextblock.aspx

Completely new controls in Windows Phone 8.1

Since Windows Phone 8.1 and Windows 8.1 now share most of their code most controls exist in both places, but not all. Below I list what controls only exist on the phone and a brief introduction on how they are used. Here there are no MSDN links since they are new controls but hopefully I can add them soon. [Update: Added MSDN links]

AutoSuggestBox

This is a completely new control, it does not even exist in Windows 8.1. It could of course be done with other controls, visibility etc and probably has been done many times. This is why there are now a control that solves this frequently occurring problem. Its usage is quite straight forward:

C#

<autoSuggestBox TextChanged="AutoSuggestBox_TextChanged"
SuggestionChosen="AutoSuggestBox_SuggestionChosen" ItemsSource="{Binding
Suggestions}">
<autoSuggestBox.ItemTemplate>
<dataTemplate>
<textBlock Text="{Binding}"/>
</dataTemplate>
</autoSuggestBox.ItemTemplate>
</autoSuggestBox>

private void AutoSuggestBox_TextChanged(AutoSuggestBox sender,
AutoSuggestBoxTextChangedEventArgs args)
{
if (args.Reason == AutoSuggestionBoxTextChangeReason.UserInput)
{
Suggestions.Clear();
Suggestions.Add(sender.Text + "1");
Suggestions.Add(sender.Text + "2");
}
}
private void AutoSuggestBox_SuggestionChosen(AutoSuggestBox sender,
AutoSuggestBoxSuggestionChosenEventArgs args)
{
// Add text to AutoSuggestBox
}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<autoSuggestBox TextChanged="AutoSuggestBox_TextChanged"

SuggestionChosen="AutoSuggestBox_SuggestionChosen" ItemsSource="{Binding

Suggestions}">

<autoSuggestBox.ItemTemplate>

<dataTemplate>

<textBlock Text="{Binding}"/>

</dataTemplate>

</autoSuggestBox.ItemTemplate>

</autoSuggestBox>

private void AutoSuggestBox_TextChanged(AutoSuggestBox sender,

AutoSuggestBoxTextChangedEventArgs args)

{

if (args.Reason == AutoSuggestionBoxTextChangeReason.UserInput)

{

Suggestions.Clear();

Suggestions.Add(sender.Text + "1");

Suggestions.Add(sender.Text + "2");

}

}

private void AutoSuggestBox_SuggestionChosen(AutoSuggestBox sender,

AutoSuggestBoxSuggestionChosenEventArgs args)

{

// Add text to AutoSuggestBox

}

Suggestions is just an ObservableCollection of strings. It can be of any type and the template can contain any controls. This is very powerful and can be altered to most need one have of AutoSuggestBox. Be aware that there might be a performance issue if you don´t show your suggestions fast, in the example I just adds dummy field but in real code you’ll probably want to filter some data which can take time.

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.autosuggestbox.aspx

DatePickerFlyout

There are a DatePicker control which can be used to show date and pick date using the DatePickerFlyout. That control is described in the next section. If you want to show the date picker flyout directly without using the date picker control you can do this by using the code below:

C#

var dpf = new DatePickerFlyout();
await dpf.ShowAtAsync(targetFrameWorkElement);
var date = dpf.Date;

1

2

3

var dpf = new DatePickerFlyout();

await dpf.ShowAtAsync(targetFrameWorkElement);

var date = dpf.Date;

I guess since this flyout always takes up the whole screen the targetFrameWorkElement just has to be an element on the page, null does not work.

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.datepickerflyout.aspx

TimePickerFlyout

Works as DatePickerFlyout but picks time instead of date. Also has a corresponding control TimePicker described in the next section.

C#

var tpf = new TimePickerFlyout();
await tpf.ShowAtAsync(targetFrameWorkElement);
var time = tpf.Time;

1

2

3

var tpf = new TimePickerFlyout();

await tpf.ShowAtAsync(targetFrameWorkElement);

var time = tpf.Time;

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.timepickerflyout.aspx

ListPickerFlyout

ListPickerFlyout is also a whole screen flyout. It showns a list from some ItemsSource which can of course be changed using a template.

C#

var lpf = new ListPickerFlyout();
lpf.ItemsSource = source;
await lpf.ShowAtAsync(targetFrameWorkElement);
var index = lpf.SelectedIndex;

1

2

3

4

var lpf = new ListPickerFlyout();

lpf.ItemsSource = source;

await lpf.ShowAtAsync(targetFrameWorkElement);

var index = lpf.SelectedIndex;

It has besides ShowAtAsync also a ShowAt, choose wisely which to use to keep your app responding.

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.listpickerflyout.aspx

PickerFlyout

This is a normal flyout except is has a ConfirmationButtonsVisible property. When it is set it shows the done/cancel button at the bottom just as DatePickerFlyout and TimePickerFlyout does. If it not set it works as the Flyout does except it is a whole screen flyout, even without the confim buttons.

C#

var pf = new PickerFlyout();
var tb = new TextBlock { Text = "my flyout textblock", FontSize = 20 };
pf.Content = tb;
pf.ConfirmationButtonsVisible = true;
await pf.ShowAtAsync(targetFrameWorkElement);

1

2

3

4

5

var pf = new PickerFlyout();

var tb = new TextBlock { Text = "my flyout textblock", FontSize = 20 };

pf.Content = tb;

pf.ConfirmationButtonsVisible = true;

await pf.ShowAtAsync(targetFrameWorkElement);

http://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.pickerflyout.aspx

Shared controls between Windows Phone 8.1 and Windows 8.1

Below I list what controls are the same in Windows 8.1 and Windows Phone 8.1. I do not go into very much details since they function the same on both platform. There are MSDN links to the Windows 8.1 version on every control. Hub, SemanticZoom, WebView and RichTextBlock are described above in the section What controls are removed between version 8.0 to 8.1.

CaptureElement

This control makes your app a viewer for the camera. You can make the viewer window as small or big as you want instead of taking up the whole screen.

C#

<captureElement x:Name="myCaptureElement"/>

private MediaCapture mediaCaptureMgr = null;
async void ShowPreview()
{
if (mediaCaptureMgr == null)
{
mediaCaptureMgr = new MediaCapture();
await mediaCaptureMgr.InitializeAsync();

myCaptureElement.Source = mediaCaptureMgr;
await mediaCaptureMgr.StartPreviewAsync();
}
}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

<captureElement x:Name="myCaptureElement"/>

private MediaCapture mediaCaptureMgr = null;

async void ShowPreview()

{

if (mediaCaptureMgr == null)

{

mediaCaptureMgr = new MediaCapture();

await mediaCaptureMgr.InitializeAsync();

myCaptureElement.Source = mediaCaptureMgr;

await mediaCaptureMgr.StartPreviewAsync();

}

}

Don’t forget to set the Webcam capability, otherwise the code will throw an exception.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.captureelement.aspx

DatePicker

This is a control for an easy way to select a date. When clicked it shows the standard date picker view that is used throughout the phone.

C#

<datePicker>

1

<datePicker>

The date format is localized which is nice not to have to think about. Very easy to use.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.datepicker.aspx

TimePicker

Works much is same as DatePicker but instead of date you pick a time.

C#

<timePicker>

1

<timePicker>

This also localized and uses the phone settings to show the time. It might be 24h or AM/PM depending on what is in the user settings.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.timepicker.aspx

Flyout

With this control you create your own flyout. It can be fill with whatever content you like, might it be text buttons etc. This does on the contrary to the other flyouts not take up the whole screen. It is sized to the content added, and it is light dismissed meaning that if you click outside the flyout it closes.

C#

var flyout = new Flyout();
var tb = new TextBlock { Text = "my flyout textblock", FontSize = 20 };
flyout.Content = tb;
flyout.ShowAt(targetFrameWorkElement);

1

2

3

4

var flyout = new Flyout();

var tb = new TextBlock { Text = "my flyout textblock", FontSize = 20 };

flyout.Content = tb;

flyout.ShowAt(targetFrameWorkElement);

Here the targetFrameWorkElement could be of use since it is not whole screen but no. The flyout in the phone positions itself on the top of the screen regardless of what control you set as target. It can also be set directly on a button as such:

C#

<button>
<button.Flyout>
<flyout>
<textBlock Text="my flyout text"/>
</flyout>
</button.Flyout>
</button>

1

2

3

4

5

6

7

<button>

<button.Flyout>

<flyout>

<textBlock Text="my flyout text"/>

</flyout>

</button.Flyout>

</button>

It is still position on the top of the screen which can be a little odd. In Windows 8 in positions itself above the target control.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.flyout.aspx

MenuFlyout

Menuflyout is the new context menu. It works as the flyout but can only contain MenuFlyoutItem, MenuFlyoutseperator or ToggleMenuFlyout. It does however have a major difference from the Flyout control namely it positions itself to the targetFrameWorkElement on the phone. I have no idea why the flyout does not do this, perhaps it will in the future.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.menuflyout.aspx

ProgressRing

This is a new control to show progress. Instead of using the dots going from left to right that the ProgressBar gives you can now get dots going in a circle. The ProgressRing is always indeterminate and is started/stopped by the IsActive property. Remember that even if the ProgressRing is collapsed it still spinning if IsActive is true, always set IsActive to false at the same time you collapse it. If the IsActive is false it is hidden but has a reserved space in the XAML tree if you don’t collapses it.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.progressring.aspx

Frame

You use the Frame control to support navigation to Page instances inside the current window. The frame remembers the navigation tree so commands as GoBack and GoForward functions as expected.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.frame.aspx

ListView

ListView is a vertical list. It inherits from ListBox and adds the possibility to use columns, different views etc. One big difference from the ListBox is that ListView supports semantic zoom.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.listview.aspx

GridView

GridView is a horizontal list and works exactly as ListView except the horizontal vs vertical display of items.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.gridview.aspx

RichEditBox

Rich text editing control that supports formatted text, hyperlinks, and other rich content. A RichTextBlock with editing possibilities.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.richeditbox.aspx

RichTextBlockOverflow

The only purpose of RichTextBlockOverflow is to display text content that does not fit in the bounds of a RichTextBlock

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.richtextblockoverflow.aspx

ToggleSwitch

Instead of just using ToggleButton with new templates there are now a ToggleSwitch. It is easy to use and gives your controls the same look as the rest of the phones switched. There is some third party controls which has mimic this in the past but now we have the ToggleSwitch from the get go. It is localized regarding the on/off text and uses the phones accent color on the switch.

C#

<toggleswitch header="my toggle switch" />

1

<toggleswitch header="my toggle switch" />

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.toggleswitch.aspx

WrapGrid

Displays child elements left to right or top to bottom. If they hit the container edge it wraps to the next row or column. WrapGrid is primarily used for the items panel template for the GridView. WrapGrid is virtualized which is good when you work with large data sets.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.wrapgrid.aspx

VariableSizedWrapGrid

VariableSizedWrapGrid works as the WrapGrid. The child element can however span across several rows or columns. A difference is that the VariableSizedWrapGrid is not virtualized which can impact performance.

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.variablesizedwrapgrid.aspx

Summary

There you have a quick overview of what controls are new in Windows Phone 8.1. There are a little on the completely new control such as the Hub control but as always if you need more info look at the MSDN links.

时间: 2024-10-29 01:26:08

What Controls are new for windows phone 8.1的相关文章

最简单的基于FFmpeg的移动端例子:Windows Phone HelloWorld

===================================================== 最简单的基于FFmpeg的移动端例子系列文章列表: 最简单的基于FFmpeg的移动端例子:Android HelloWorld 最简单的基于FFmpeg的移动端例子:Android 视频解码器 最简单的基于FFmpeg的移动端例子:Android 视频解码器-单个库版 最简单的基于FFmpeg的移动端例子:Android 推流器 最简单的基于FFmpeg的移动端例子:Android 视频转

Windows自主开发应用的白盒测试

     白盒测试(white-box testing)又称透明盒测试(glass box testing).结构测试(structural testing)等,软件测试的主要方法之一,也称结构测试.逻辑驱动测试或基于程序本身的测试.测试应用程序的内部结构或运作,而不是测试应用程序的功能(即黑盒测试).在白盒测试时,以编程语言的角度来设计测试案例.测试者输入数据验证数据流在程序中的流动路径,并确定适当的输出,类似测试电路中的节点.测试者了解待测试程序的内部结构.算法等信息,这是从程序设计者的角度

Delphi一共封装(超类化)了8种Windows基础控件和17种复杂控件

超类化源码: procedure TWinControl.CreateSubClass(var Params: TCreateParams; ControlClassName: PChar); const {CS_OWNDC标志,属于此窗口类的窗口实例都有自己的DC(称为私有DC) } {CS_CLASSDC标志,所有属于该类的窗口实例共享相同的DC(称为类DC).类DC有一些私有DC的优点,而更加节约内存} {CS_PARENTDC标志,属于这个类的窗口都使用它的父窗口的句柄.和CS_CLAS

Windows Phone 7 下 Socket(TCP) 与 PC 通讯

Windows Phone 7 下 Socket(TCP) 与 PC 通讯,使用 WP7 模拟器与 PC 上的 Simple TCP 服务进行通讯. TCP 客户端主要实现 Socket 连接的建立.数据的发送与接收和关闭已经建立的 Socket. 1 using System; 2 using System.Net; 3 using System.Windows; 4 using System.Windows.Controls; 5 using System.Windows.Documents

【转】Windows Phone在隔离存储里存取图片文件

一共两个页面,第一个为MainPage.xaml,代码如下:  前台 后台代码如下: MainPage.xaml.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Net; 5 using System.Windows; 6 using System.Windows.Controls; 7 using System.Windows.Documents; 8 usin

在WPF控件上添加Windows窗口式调整大小行为

起因 项目上需要对Canvas中的控件添加调整大小功能,即能在控件的四个角和四条边上可进行相应的拖动,类似Windows窗口那种.于是在参考以前同事写的代码基础上,完成了该功能. 代码实现 Adorner 我们是给现有的控件添加功能,属于装饰功能.当然首先想到的就是Adorner.在MSDN中Adorner的介绍如下: 装饰器是一个绑定到 UIElement 的自定义 FrameworkElement. 装饰器呈现在装饰器层中,它是一个呈现图面,始终位于装饰元素或装饰元素集合的顶部:呈现装饰器独

WPF的System.Windows.Threading.DispatcherTimer的使用(每隔一定的时间重复做某事)

这里使用了一个进度条来展示, 前段代码: 1 <Window x:Class="TimerTest.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 Title="MainWindow" Heig

windows phone 8.0 app 移植到windows10 app 页面类

phone:PhoneApplicationPage    全部替换为Page phone:WebBrowser               全部替换为   WebView IsScriptEnabled="True"           空格 SupportedOrientations="Portrait"     空格 Orientation="Portrait"     空格 Orientation="Landscape"

Windows基础概念

窗口 每个GUI应用程序都有一个窗口,它由多个部分组成. 包括标题栏,[a1] 菜单栏,客户区[a2] ,状态栏等 对话框是窗口,还是控件? 窗口类 每个窗口都对应一个窗口类. 窗口类定义了菜单项,背景,图标,鼠标指针样式,和窗口消息处理函数.  每个窗口类都对应一个消息处理函数,即每个窗口都有自己的消息处理函数. 应用程序在创建窗口前,需向系统注册窗口类,或是用系统已定义好的窗口类. 消息和消息处理函数 消息的分类: COMMAND 和  WM_ ,还有一类是通知型的消息,以及控件消息? 控件