• Tag: 这里是我的标签集合!

WPF商业控件

01月 30th, 2008

Infragistics公司刚刚发布了其WPF控件集NetAdvantage,足足有100兆之大……虽然这些控件巨大文档冗长,但包含了很多的例子程序。这个控件集很好的填补了当前WPF所提供的能力的空白,包括Data Grid,charting controls和一个Office ribbon工具。

微软官方也为C++程序员发布了一款MFC feature pack,下载地址点我

WPFTracker

Blend 2 December Preview Release

12月 7th, 2007

Microsoft Expression Blend 2 December Preview had released at 12/5.

Before its installation you should uninstall Blend 2 September Preview.

URL: http://www.microsoft.com/downloads/details.aspx?FamilyID=65177e23-c116-475a-9057-5a5071a379f6&DisplayLang=en

新版本应该加强了与Visual Studio 2008的协作,同时建立WPF application and WPF Control Library时可以指定.NET的版本,与VS2008相呼应。

blend2-dec

.NET Framework 3.5 Namespaces Poster Available

11月 16th, 2007

Microsoft has released a .NET Framework 3.5 Namespaces Poster, Here is the link(You can choose the PDF or XPS) if you want to get it now and be the first to get it on your wall^^

Framework3.5

WPF日历控件&翻译

08月 31st, 2007

一直苦于在WPF中没有日历控件(虽然Win Forms中的日历控件在Vista下就是Vista的风格,功能强大且美观,但不知道怎样用在WPF中),给我们带来许多不便。近日找到强人共享的代码:WPF日历控件,大家可试试看~

NvCal

另,在.NET 3官方网站上,微软员工也放出了相应的日历控件,但不如Vista自带的美观和功能强大。

Visual Studio 2008 Beta2初体验

07月 29th, 2007

下午安装了Windows Server2008 June CTP和VS2008 Beta2,在Server2008上VS的运行速度还可以,而且运行几次后启动速度会变得非常快,可能得益于系统的内置应用程序优化吧。
VS2008

安装速度比Beta1版本有了较大提高(P.S:而且安装.NET Framework3.5过程中不用重启了,可能与我没有安Windows SDK有关。当时在Vista上安装Beta1时第一次竟然出现Error,导致我重装Vista-_-!!)。UI配色更喜欢了(偶喜欢那种蓝色 ^^)。在新建工程时可以选择Framework的版本,这在以前的版本中提到过。明显的变化是XAML设计器中增加了缩放工具,在Design区下方的状态栏中增加了XAML元素的选取,比以前更方便了,并且XAML的智能感知功能更加强大。其他方面由于我没有涉及,新增或改变我无法说起,但对于新技术的支持应该是肯定的~希望正式版早日出来~

Visual Studio 2008 Beta 2 Released

07月 24th, 2007

Visual Studio 2008 Beta 2 was released to the web for download today. The releases are available both as regular installs and as VPC images. If you choose the regular installation, you should run this script to "ensure that the installation of .NET Framework 3.5 Beta 2 will not affect the development of ASP.NET AJAX 1.0 applications."

VS2008hero_2

This version is a 全功能 version. It includes C#3.0, VB 9, LINQ and so on, also .NET Framework 3.5 has more new features:

  1. Support for Addins
  2. Xbaps now run in FoerFox
  3. Cookies can be shared between XBAP's and Web Apps
  4. Better support for binding to BindingList coll and LINQ
  5. new UIElement3D, Contai
  6. nerUIElement3D, ModelUIElement3D classes which make 3D stuff easy
  7. Place 2D elements on 3D using Viewport2DVisual3D
  8. RichTextBox has embedded elements enabled (IsDocumentEnabled property)
  9. IME support has improved. Filtering text in IME is now a well suported scenario

watermark.bmp

WPF Window Style

07月 18th, 2007

在WPF中,Windows窗体的风格(Style)有如下四种:

None.
SingleBorderWindow (default).
ThreeDBorderWindow.
ToolWindow.

1.bmp

但有时我们却想创建非矩形框的Windows,例如程序界面无边框,背景透明,可在xaml文档中的Windows Element下添加如下代码可实现窗体背景的透明化。

<window windowstyle="None" allowstransparency="True" background="Transparent"> </window>

lcd

P.S:还记得4月去小易那里看到的他们做的IM软件的登录窗口,帅!