Great news! Unifying Developer Registration: Windows and Windows Phone
Showing posts with label WinRT. Show all posts
Showing posts with label WinRT. Show all posts
Thursday, November 7, 2013
Saturday, September 7, 2013
Monday, August 12, 2013
Useful links related WinRT app
1) Hands-on labs for Windows 8
2) Create a trial Version of your app:
Friday, May 3, 2013
Callisto:A control suite for some common things a Windows 8 XAML application might want to include such as a Flyout, Menu, Rating, Settings Pane, and Pivot control
Callisto:A control suite for some common things a Windows 8 XAML application might want to include such as a Flyout, Menu, Rating, Settings Pane, and Pivot control
http://visualstudiogallery.msdn.microsoft.com/0526563b-7a48-4b17-a087-a35cea701052
Callisto is a library for use in Windows 8 XAML applications (aka Metro style apps). The XAML framework in Windows.UI.Xaml is great, but has some functionality that isn't provided in-the-box in a few controls and APIs. Callisto serves to provided added functionality on top of the XAML UI framework for Windows.
What's In It?
So far Callisto includes:
* `Flyout` - a primitive that includes positioning and 'light dismiss' logic
* `Menu` - primarily to be used from AppBar, contains the base for providing, well, a Menu
* `MenuItem` - an item for a menu, including separators and contains the command point for the menu item
* `SettingsFlyout` - an item to create a custom settings pane UI
* `LiveTile` - an in-app tile experience to give you animated or 'live' tiles
* `Tilt` - an effect to provide the tilt experience when clicked on edges/corners
* OAuth helpers - a set of helpers to create OAuth 1.0 signatures/headers for those sites that hate OAuth 2.0 :-)
* `BooleanToVisibilityConverter` - a converter to well, convert boolean to visibility, very common use
* `LengthToBooleanConverter` - a converter to examine a string length to convert to boolean (simple validation helper)
* `RelativeTimeConverter` - a converter to show time as relative string, i.e., 'about an hour ago'
* Extensions - some extension method helpers
http://visualstudiogallery.msdn.microsoft.com/0526563b-7a48-4b17-a087-a35cea701052
Callisto is a library for use in Windows 8 XAML applications (aka Metro style apps). The XAML framework in Windows.UI.Xaml is great, but has some functionality that isn't provided in-the-box in a few controls and APIs. Callisto serves to provided added functionality on top of the XAML UI framework for Windows.
What's In It?
So far Callisto includes:
* `Flyout` - a primitive that includes positioning and 'light dismiss' logic
* `Menu` - primarily to be used from AppBar, contains the base for providing, well, a Menu
* `MenuItem` - an item for a menu, including separators and contains the command point for the menu item
* `SettingsFlyout` - an item to create a custom settings pane UI
* `LiveTile` - an in-app tile experience to give you animated or 'live' tiles
* `Tilt` - an effect to provide the tilt experience when clicked on edges/corners
* OAuth helpers - a set of helpers to create OAuth 1.0 signatures/headers for those sites that hate OAuth 2.0 :-)
* `BooleanToVisibilityConverter` - a converter to well, convert boolean to visibility, very common use
* `LengthToBooleanConverter` - a converter to examine a string length to convert to boolean (simple validation helper)
* `RelativeTimeConverter` - a converter to show time as relative string, i.e., 'about an hour ago'
* Extensions - some extension method helpers
Thursday, May 2, 2013
Assign color from codebehind
Assign color from codebehind
MySettings.HeaderBrush = new SolidColorBrush(Windows.UI.Colors.BlueViolet);
MyBackGround..Background = new SolidColorBrush(Windows.UI.Colors.BlueViolet);
MySettings.HeaderBrush = new SolidColorBrush(Windows.UI.Colors.BlueViolet);
MyBackGround..Background = new SolidColorBrush(Windows.UI.Colors.BlueViolet);
Thursday, April 4, 2013
Detecting Network Connection in Windows Store Apps
If you developing a Windows Store Apps, it’s a possible likelihood that you rely on some sort of service to either get data or store data. This means that you will probably at the mercy of the Internet connectivity on the device. As a best practice you are supposed to make sure the device is connected to Internet and if not gracefully handle the situation. In this blog post you will take a look at how to achieve this
http://blogs.msdn.com/b/mvpawardprogram/archive/2013/04/01/detectingnetwork-connection-in-windows-store-apps.aspx
Tuesday, January 29, 2013
WCF Data Services Tools for Windows Store Apps
The WCF Data Services Tools for Windows Store Apps installer extends the Add Service Reference experience with client-side OData support for Windows Store Apps in Visual Studio 2012.
Here is link to install it:
http://www.microsoft.com/en-us/download/details.aspx?id=30714
Monday, November 19, 2012
Styles for App Bar buttons
In WinRT StandardStyles.xaml already defined lots of styles. Here is one example from the StandardStyles.xaml file.
<Style x:Key="SaveAppBarButtonStyle" TargetType="ButtonBase" BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId" Value="SaveAppBarButton"/>
<Setter Property="AutomationProperties.Name" Value="Save"/>
<Setter Property="Content" Value=""/>
</Style>
To look for more style, open the Windows Character map and type Segoe UI Symbol from the Font combo box and here you will see all the symbols.
<Style x:Key="SaveAppBarButtonStyle" TargetType="ButtonBase" BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="AutomationProperties.AutomationId" Value="SaveAppBarButton"/>
<Setter Property="AutomationProperties.Name" Value="Save"/>
<Setter Property="Content" Value=""/>
</Style>
To look for more style, open the Windows Character map and type Segoe UI Symbol from the Font combo box and here you will see all the symbols.
Subscribe to:
Posts (Atom)
How to upload app to macOS
1. Open Terminal Press Cmd (⌘) + Space , type Terminal , and hit Enter . 2. Navigate to Your Build Output Directory Your .app file is likel...
-
1. Open Terminal Press Cmd (⌘) + Space , type Terminal , and hit Enter . 2. Navigate to Your Build Output Directory Your .app file is likel...
-
Generating an API Key Before you can add an Apple Developer Account to Visual Studio, you'll need to generate an API Key. Generating a...
-
Log in to the Play Console: Go to the Play Console website ( play.google.com/console ) and log in with your Google Play Developer account....