abhi2434

Stories kicked by abhi2434

Layout adjustments Snapping and OrientationChanges in Metro Applicatio(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 6 months, 26 days ago

Layout is the most important part of any application. The best design for an application gets more credit and love from the users than applications that are designed bad. Metro style applications runs in full screen. Your application does not include a Title Bar, status bar or anything. Microsoft gave us some of the basic layout guidelines that one needs to follow. Lets talk about them here to make you understand how you should layout your application in Metro Applications to utilize maximum flexibility of it. read more...

2 comments |category: |Views: 12

tags: another

Understanding basic WinRT Metro Applications and Application Capability(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 6 months, 27 days ago

Windows 8 is already out in Developer Preview form. A new way of building applications in Windows 8 has already been introduced. Lets put up a note to let you know how to build applications for WinRT. In this post you will learn how you can use Capabilities for your application and build your first basic WinRT Metro Applications. read more...

5 comments |category: |Views: 101

tags: another

Writing a Custom ConfigurationSection to handle a Collection(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 8 months, 15 days ago

Here I have demonstrated how you can handle a collection of settings for a Configuration. I have attached Source code that demonstrate what I am demonstrating in the article. read more...

2 comments |category: |Views: 14

tags: another

Steps to write a plugin based application with MEF(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 8 months, 29 days ago

Writing a plugin based application is always been an element of fun. With Reflection you can read dlls at runtime and load plugins. This article will guide you step by step how to write one for you. I have also converted the same application to use Managed Extensibility Framework with source code. read more...

add a comment |category: |Views: 24

tags: another

Internals of Dependency Property in WPF(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 9 months, 26 days ago

WPF Dependency property system is a new property system introduced with WPF. In this post I discuss how it is actually built and how it communicates with other features of WPF and its benefits. read more...

1 comment |category: |Views: 15

tags: another

Writing a Reusable Custom Control in WPF(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 10 months, 1 day ago

This article shows you how you can build a custom reusable Custom Control for your WPF application, which can also be used as Library with support of Templating, styling, Event Routing etc. The sample application is also provided for you read more...

add a comment |category: |Views: 11

tags: another

Writing a Reusable WPF Control with Design Support(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 10 months, 3 days ago

UserControl is most important reusable component for WPF. Lets see how you can derive from a custom panel to get a reusable control read more...

add a comment |category: |Views: 7

tags: another

ValueType and ReferenceType : Under the Hood Part 2(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 10 months, 10 days ago

Value Types and Reference types are the primary part of any program. The post will describe the internals of ValueTypes and Reference Types. This is a Two article series, and this is the last part. read more...

add a comment |category: |Views: 2

tags: another

ValueTypes and ReferenceTypes : Under the Hood(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 10 months, 10 days ago

Value types and Reference types are pretty basic which every developers must know. Here is some of the interesting facts on the same with in-depth analysis on how it actually works under the hood read more...

add a comment |category: |Views: 21

tags: another

Some facts about Null in .NET(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 11 months ago

Nulls are the most important part of any program. Here I have defined how you can use nulls in your code and what are the things that you need to keep in mind while working with it. read more...

add a comment |category: |Views: 7

tags: another

Concept Overide vs Method Hiding in terms of C(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 11 months, 2 days ago

Clear your doubts on the difference between Method Overriding and Method Hiding when dealing with C#. In this post, I cover most of the interesting facts regarding this which confuse you while working in real world. I hope this post will come handy to all developers. read more...

add a comment |category: |Views: 2

tags: another

Playing with Reflection and Async(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 11 months, 22 days ago

Playing with Reflection is one of my favourite habit. Once Async released, I tried out playing with it. Here is what I have done, check and have fun. read more...

add a comment |category: |Views: 24

tags: another

Internals of Array(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 11 months, 25 days ago

Arrays are most important part of your program. Almost most of the collection that you work with in .NET framework is internally maintains Array. Say for instance, if you take the List it actually internally represents T[], while Dictionary is actually an array of structure KeyValuePair internally. Hence, array forms a very important part of your program. read more...

add a comment |category: |Views: 2

tags: another

DLR in C# using scripting language(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 1 year ago

Scripting language lets you evaluate your code dynamically during runtime. Here is a demonstration on how you can use a scripting language to evaluate your code from your C# api hosting IronPython inside it. read more...

add a comment |category: |Views: 4

tags: another

Creating Animated Splash screen in Windows Phone 7(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 1 year ago

Creating a beautiful splash screen is always great to see for any application. Windows Phone 7 being no exception to it, you want to give the user great look and feel while loading the application using your Splash Screens. In this article, I am going to spend some time by talking about some of the probable options that you have to create your own Splash Screen for your windows phone 7 application. read more...

add a comment |category: |Views: 46

tags: another

Async support for Silverlight and WP7(www.abhisheksur.com)

submitted by abhi2434abhi2434(1006) 1 year ago

Async CTP is not so much new, but it is newly supporting Windows Phone 7 and Silverlight. Here is a demonstration on how to work on them. read more...

add a comment |category: |Views: 12

tags: another