DotNetShoutout - Stories tagged with XAML
3
Shouts

What is Character Spacing in Silverlight 5 Controls

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 744 days, 21 hours, 9 minutes ago
Thursday, May 12, 2011 3:38:12 AM GMT
There are many new feature announced to support Text advancements in Silverlight 5 Beta. Among them, one is the character spacing. This feature adds spacing between characters inside a TextBlock, RichTextBox and other control elements. In this post we will demonstrate the use of this new feature and also showcase a simple demo to make you understand better. Read it and start learning Silverlight 5 features. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight5, Silverlight, XAML, Silverlight 5
3
Shouts

Formatting text in Silverlight XAML using StringFormat

published 744 days, 15 hours, 42 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 745 days, 21 hours, 7 minutes ago
Thursday, May 12, 2011 9:05:18 AM GMT Wednesday, May 11, 2011 3:40:33 AM GMT
In my latest two tips we have seen that we can customize the string using Run, Span tags as well as StringFormat in the XAML page. What about if I want to format it for proper DateTime, Currency or Numeric style? As I told you in my last post that, we can achieve the same using the StringFormat parameter in XAML too. Here in this post, I will demonstrate you the process in depth. Read to know more about it and make your life more comfortable designing your Silverlight application. (more)
category: Metro | clicked: 3 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight, XAML, Tips
2
Shouts

Advanced Dotnet Tutorial: Editing the Path of any Shape in XAML Silverlight

posted by learndotnet123learndotnet123 747 days, 17 hours, 56 minutes ago
Monday, May 09, 2011 6:51:28 AM GMT
In Expressing Blend we are not only limited to draw some primitives line rectangle, line or ellipse. Expression Blend help us to create any shape. Expression Blen has two tools named Pen and Pencil which let us to create path and selection cursor let us to modify the shape. Let's create any shape using these tools.Follow the steps:Step 1Create a new project in Expression Blend and draw a rectangle and fill any color.Step 2Using selection tool select the rectangle and click on Object > Path > Convert to P... (more)
category: Metro | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, editing", Shape, XAML
2
Shouts

Tips: Formatting Silverlight TextBlock Control

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 747 days, 20 hours, 54 minutes ago
Monday, May 09, 2011 3:53:34 AM GMT
In general we use multiple TextBlock controls inside a StackPanel to format a single line. In this post I will show you a different way to format a single line. This is very useful if you want to bind any data in the middle of the text string. Also this is useful if you want to format the line with multiple formatting option. Read to know more about it. (more)
category: Metro | clicked: 1 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight, XAML, Tips
6
Shouts

What’s New in Silverlight 5? – XAML Changes

published 744 days, 15 hours, 42 minutes ago posted by elsheimyelsheimy 748 days, 6 hours, 14 minutes ago
Thursday, May 12, 2011 9:05:18 AM GMT Sunday, May 08, 2011 6:33:29 PM GMT
In this article, we’ll have a brief discussion of the new XAML features of Silverlight 5. (more)
category: Metro | clicked: 0 | comment | | source: justlikeamagic.com
tags: .NET, Silverlight, C#, Microsoft, XAML, Silverlight 5
6
Shouts

Mindscape releases WPF Diagrams 2.0

published 750 days, 3 hours, 44 minutes ago posted by traskjdtraskjd 751 days, 12 hours, 29 minutes ago
Friday, May 06, 2011 9:03:41 PM GMT Thursday, May 05, 2011 12:18:34 PM GMT
Mindscape WPF Diagrams 2.0 has been released and adds to the existing product by adding 80+ new shapes out of the box, absolute positioned diagrams, improved toolbox and much more. But it's not all about features - it's about providing a way for developers to easily create 'WOW' experiences for their end users and WPF Diagrams does just that. (more)
category: UX | clicked: 1 | 4 comments | | source: www.mindscapehq.com
tags: Diagram, WPF, Flow Diagram, XAML, Shapes, Mindscape
2
Shouts

Advanced Dotnet Tutorial: Playing and Controlling Video Playback in XAML Silverlight

posted by learndotnet123learndotnet123 753 days, 19 hours, 56 minutes ago
Tuesday, May 03, 2011 4:51:25 AM GMT
Using videos in a Silverlight based application is a very exciting feature that come early Silverlight 2. Today we see the most extended Silverlight specially Microsoft added GPU Hardware Acceleration for video and bitmap in Silverlight 3 and now Silverlight 4 supports the output protection for video and audio. How to Play Video  To play the video, we can simply drag the compatible [List of Supported Media Formats] video file on the development stage. Now, if you add videos in the development stage and ... (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silverlight, controlling, XAML, video playback
2
Shouts

Async support for Silverlight and WP7

published 756 days, 9 hours, 35 minutes ago posted by abhi2434abhi2434 759 days, 4 hours, 14 minutes ago
Saturday, April 30, 2011 3:12:02 PM GMT Wednesday, April 27, 2011 8:33:44 PM GMT
Async support in C# language brings the new life to the modern application development to bring forth the same technique of writing your code and bring asynchrony easily. The main focus of async ctp is to ornament the language in such a way so that the developer could seamlessly create applications that brings asynchrony yet not dealing with its complexity. Hence using the new technique, asynchrony could easily achieved in a program without refactoring the whole program with lots of callbacks and method... (more)
category: Metro | clicked: 0 | comment | | source: www.abhisheksur.com
tags: Silverlight, Windows Phone 7, Async, C# 5.0, XAML
2
Shouts

Advanced Dotnet Tutorial: Resource Management In Silverligt 3

posted by learndotnet123learndotnet123 767 days, 19 hours, 46 minutes ago
Tuesday, April 19, 2011 5:01:27 AM GMT
The files required for any Application to run other than project related files are called resources. It can be a text file or image file or any other file. In this article, we will be seeing how images can be accessed in various ways in a Silverlight application. Types of Resource Management There are 3 ways we can manage resources such as: Add Image as ResourceAdd Image as Content Add Image as Resource in an external assemblyCreate a Silverlight Project Figure 1.1 Creating Silverlight P... (more)
category: Metro | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: resource management, Silvelight 3, XAML
2
Shouts

Advanced Dotnet Tutorial: Splash Screen in Silverlight 3 Application

posted by learndotnet123learndotnet123 768 days, 20 hours, 27 minutes ago
Monday, April 18, 2011 4:20:46 AM GMT
If a Silverlight application is small, it will be downloaded quickly and appear in the browser. If a Silverlight application is large, it may take a few seconds to download. As long as your application takes longer than 500 milliseconds to download, Silverlight will show an animated splash screen. Splash Screens can be used for the following purposes: To show the Progress of downloading the xap file. (By Default) Copyright Information Custom Animation.Crating Silverlight Project Fire up Visual ... (more)
category: Metro | clicked: 5 | comment | | source: advanceddotnettutorial.blogspot.com
tags: Silvelight, Splash Screen, XAML
6
Shouts

"Those who cannot remember the past are condemned to repeat it." [WebBrowserExtensions.StringSource attached dependency property makes Silverlight/Windows Phone/WPF's WebBrowser control more XAML- and binding-friendly] - David Anson

published 765 days, 23 hours, 40 minutes ago posted by AlexAlex 769 days, 10 hours, 14 minutes ago
Thursday, April 21, 2011 1:07:06 AM GMT Sunday, April 17, 2011 2:33:40 PM GMT
The WebBrowser control is available in Silverlight 4, Windows Phone 7, and all versions of WPF. It's mostly the same everywhere, though there are some specific differences to keep in mind when using it on Silverlight-based platforms. WebBrowser offers two ways to provide its content: by passing a URI or by passing a string with HTML text: If you have a URI, you can set the Source (dependency) property in code or XAML or you can call the Navigate(Uri) method from code... (more)
category: Metro | clicked: 2 | comment | | source: blogs.msdn.com
tags: SL, Silverlight, XAML
6
Shouts

WP7 for iPhone and Android Developers - Introduction to XAML and Silverlight

published 820 days, 16 hours, 57 minutes ago posted by KMilKMil 822 days, 9 hours, 47 minutes ago
Friday, February 25, 2011 7:50:47 AM GMT Wednesday, February 23, 2011 3:00:15 PM GMT
This article aims to show you how to get started constructing the user interface of your Windows Phone 7 application with a slight bent toward easing the UI-building transition from iOS and Android. As with all articles in this series, you don’t need any iOS or Android experience to learn from article, but iOS and Android developers may find that this series of articles makes learning WP7 a little easier than generic tutorials. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
tags: iPhone, Windows Phone 7, WP7, Android, XAML
2
Shouts

Daily News Headline @SilverlightZone - 27 January 2011 - #12

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 849 days, 6 hours, 28 minutes ago
Thursday, January 27, 2011 6:19:18 PM GMT
Today, we have 19 new news items on various topics in Silverlight-Zone by different authors. We reached around 670 news items in one month. If you are a Silverlight or Windows Phone 7 application developer, follow Silverlight-Zone for daily posts. Subscribe to our news feed and email digest to deliver it to your inbox. Also, follow us on Twitter @SilverlightZone for regular news tweet delivered to your twitter account. Find all the Silverlight/WP7 related article links in this post. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Windows Phone 7, WP7, Windows Phone 7 Development, wp7dev, SilverlightZone, Windows Phone, Silverlight-Zone, Silverlight 4, Silerlight 3.0, Tutorial, WP, XAML, Silverlight4, Silverlight 4.0
2
Shouts

Daily News Headline @SilverlightZone - 26 January 2011 - #11

published 849 days, 6 hours, 48 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 850 days, 6 hours, 59 minutes ago
Thursday, January 27, 2011 5:59:34 PM GMT Wednesday, January 26, 2011 5:48:49 PM GMT
Today, we have 22 news items on various topics in Silverlight-Zone by different authors. Subscribe to our news feed and email digest to deliver it to your inbox. Also, follow us on Twitter @SilverlightZone for regular news tweet delivered to your twitter account. Find all the Silverlight/WP7 related article links in this post. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight, Windows Phone 7, WP7, wp7dev, Silverlight 4, Blend, XAML
7
Shouts

Cross-Training in Silverlight and Flex – XAML vs MXML

published 922 days, 12 hours, 28 minutes ago posted by BrianGenisioBrianGenisio 924 days, 20 hours, 28 minutes ago
Monday, November 15, 2010 12:19:44 PM GMT Saturday, November 13, 2010 4:19:11 AM GMT
Silverlight and Flex both include a declarative markup language for their UIs.  Microsoft calls the Silverlight specification Extensible Application Markup Language (XAML pronounced zammel).  Adobe calls the Flex specification MXML which is thought to have come from the original inventors: Macromedia extensible Markup Language. In either case, these markup languages share two strong characteristics: They are both based on XML and they both do a fine job of declaring the UI. (more)
category: Metro | clicked: 1 | comment | | source: houseofbilz.com
tags: Silverlight, Flex, MXML, XAML
6
Shouts

XAMLCast – Interview with Paul Betts about ReactiveXaml - Roberto Sonnino

published 937 days, 1 hour, 36 minutes ago posted by MikeMike 938 days, 2 hours, 3 minutes ago
Sunday, October 31, 2010 11:11:02 PM GMT Saturday, October 30, 2010 10:44:00 PM GMT
Following on our special series of interviews, Roberto interviewed Paul Betts, a Software Development Engineer in the Windows team and creator of ReactiveXaml. In a video special, he talked about Reactive programming and how to apply it to WPF and Silverlight through RxXaml. An awesome introduction to a new paradigm on WPF/SL development!.. (more)
category: Smart Client | clicked: 1 | comment | | source: virtualdreams.com.br
tags: XAML
7
Shouts

Windows Phone 7 - Dynamically load XAML - Christoph's Blog

published 941 days, 9 hours, 6 minutes ago posted by DustinDustin 943 days, 8 hours, 59 minutes ago
Wednesday, October 27, 2010 3:41:07 PM GMT Monday, October 25, 2010 3:48:50 PM GMT
Sometimes it is necessary to load an element like a shape dynamically from an file, resource or directly from a string into the corresponding API classes. In Silverlight for Windows Phone 7 this can be done with the use of the XamlReader Class. This class can be found in the System.Windows.Markup namespace. With the use of this class it’s very easy to create in memory representations of XAML object you created in tools like expression blend. In my example I created an ellipsis with a gradient fill and ... (more)
category: Smart Client | clicked: 5 | comment | | source: blogs.msdn.com
tags: Windows Phone 7, Windows Phone 7 Development, Windows Phone 7 Series, XAML
6
Shouts

Child Window in WPF - Debug Mode

published 949 days, 5 hours, 38 minutes ago posted by dharadhara 949 days, 17 hours, 41 minutes ago
Tuesday, October 19, 2010 7:09:13 PM GMT Tuesday, October 19, 2010 7:06:36 AM GMT
n WPF we can work with child window as dialog box. This article will provide you an explanation that how could we work with child window and dialog box in WPF ... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, XAML, ASP.NET
9
Shouts

An Asynchronous Delegate Command for your WPF MVVM Apps - AsyncDelegateCommand

published 956 days, 10 hours, 20 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 957 days, 12 hours, 59 minutes ago
Tuesday, October 12, 2010 2:27:34 PM GMT Monday, October 11, 2010 11:48:08 AM GMT
This post assumes you are familiar with basic MVVM concepts and RelayCommand/DelegateCommand In a lot of scenarios, you need to perform operations in an asynchronous way in your View Model. And most of the time, BackgroundWorker class comes handy. So, here is a quick implementation of an Asynchronous version of DelegateCommand, that wraps the BackgroundWorker under the hoods. /// public class AsyncDelegateCommand : ICommand { BackgroundWorker _worker=new BackgroundWorker(); ... (more)
category: UX | clicked: 28 | 1 comment | | source: amazedsaint.blogspot.com
tags: .NET, C#, WPF, XAML
7
Shouts

Deploying Silverlight assemblies via NuPack - Tim Heuer

published 956 days, 10 hours, 20 minutes ago posted by jantujantu 959 days, 13 hours, 59 minutes ago
Tuesday, October 12, 2010 2:27:34 PM GMT Saturday, October 09, 2010 10:48:29 AM GMT
It’s a pretty cool mechanism for getting .NET libraries. For other open source developers this concept isn’t something new (i.e., gems). But for .NET developers it might be because it is a difference from the way we typically have received dependent and 3rd party assemblies for our projects. It provides a PowerShell script mechanism for adding packages as well as the well-known “Add Reference” gesture for VS developers. (more)
category: Metro | clicked: 33 | comment | | source: timheuer.com
tags: Silverlight, nupack, wp7dev, gem, windows-phone, XAML