SharpDevelop 4.0
Visual Studio 2010 is in the market for a little while. That sounds like no opensource alternative for .Net 4.0 until now. SharpDevelop 4.0 Beta 1 is released. I have tried that. So far, my first impression is slower. I guess that is because the UI is heavy rewritten in WPF. I think most of people will agree WPF got a better appearance and runs slower. But it got a feature I want for long time. Windows forms designer for WPF. Now, you can use the form desginer to edit xaml. That's great! By the way, in release notes, they do not recommend to use the form designer for editing .net 2.0 winfrom files. I tried that, so far, I have not faced any major issues. Well, they don't recommend that, I think you should not do that.
Lastly, so far, I am very happy to the new version. It looks better and got more features!
HTC Legend arrived in Australia
HTC Legend arrived in Australia. So far, it is only available on Vodafone on $49 cap plan.
According to HTC Press Releases, there will be available on Three soon. So far, I have checked their blog. There is no information about this so far.
C# in iPhone
I found that actually you can develop iPhone app in C#. There is an application from Novell, MonoTouch. I read the documentations, it seems to be directly interface with the native iPhone OS. That sounds quite nice and it supports iPhone OS. Although it sounds powerful, it is not a freeware. Even the professional edition costs $399!
Google I/O 2010 - Android New Features
The 2nd day of keynote is about Android. Mainly, Google presented the newest version of Android, 2.2. They is a faster OS. Moreover, the Android market has some new features, such as "Update All". You can click "Update All" button to update all applications in your phone, rather than updating them one by one. But sadly, the payment processor for Android Market is still only available for developers in the limited locations to sell their apps.
Set the icon of a window in WPF
Setting the Icon of a window in WPF is very simple! In your window xaml, you need to put the filename of your icon file in icon attribute, like the following:
Code
<Window x:Class="GUIDGenerator.Window1" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
Title="GUIDGenerator" Height="300" Width="300" Icon="generator.ico" | |
> |
Moreover, please the properties in the icon file. The build action sets to be "Content" and Copy to output directory sets to "Always".