2012年9月3日

The FlyoutCONTROL

摘要: http://blogs.msdn.com/b/eternalcoding/archive/2012/07/03/tips-and-tricks-for-c-metro-developers-the-flyout-control.aspxThis article starts a new series about small (but I hope useful) tips that can help you during your development phase.Today I will talk about how you can create a flyout control.A f 阅读全文

posted @ 2012-09-03 17:55 GIS-MAN 阅读(251) 评论(0) 推荐(0) 编辑

页面嵌套

摘要: <StackPanel Orientation="Vertical" Grid.Column="1"> <TextBlock Style="{StaticResource HeaderTextStyle}" Margin="10" Text="Item Detail"/> <Frame x:Name="ItemDetailFrame"/> </StackPanel>在LISTpage 的onavigated 的方法里面, Ite 阅读全文

posted @ 2012-09-03 17:10 GIS-MAN 阅读(242) 评论(0) 推荐(0) 编辑

win8 metro 弹出一个部分

摘要: <Popup x:Name="AddItemPopup" IsLightDismissEnabled="True" Width="435" Height="265" > <StackPanel Background="Black"> <Border Background="#85C54C" BorderThickness="4"> <Grid Margin="10"> <Grid.R 阅读全文

posted @ 2012-09-03 16:52 GIS-MAN 阅读(370) 评论(0) 推荐(0) 编辑

win8 获得地理坐标

摘要: using Windows.Devices.Geolocation; Geolocator geoloc = new Geolocator();Geoposition position = await geoloc.GetGeopositionAsync();//h获得地理坐标 HttpClient httpClient = new HttpClient(); httpClient.BaseAddress = new Uri("http://nominatim.openstreetmap.org"); HttpResponseM... 阅读全文

posted @ 2012-09-03 16:25 GIS-MAN 阅读(371) 评论(0) 推荐(0) 编辑

导航