使用Grid来对WPF页面进行布局排版 – 数码,手机,安防,电脑,驱动,软件,下载,股票,权证,财经 – 深圳3C财富在线
http://www.k88.net/article/show.asp?id=6340

Visual Studio的Ruby in Steel提供JRuby支持 – 技术开发 &line; IT168
http://tech.it168.com/zx/2008-03-17/200803170903356.shtml

Ruby调试器一览-开发工具-编程环境
http://www.kuqin.com/developtool/20080505/7922.html

Ruby和Python的语法差别 – ruby – Ruby – JavaEye论坛
http://www.javaeye.com/topic/25003

【转载】Python IDE比较与推荐_大猪的窝
http://hi.baidu.com/zhujin2006/blog/item/ad103b01b664fa0a7aec2c3d.html

Ruby IDE for NetBeans 可以用了 – ruby – Ruby – JavaEye论坛
http://www.javaeye.com/topic/55085
NetBeans

Python IDE 使开发变得更容易(2) – Python IDE – 技术应用 – 豆豆网
http://tech.ddvip.com/2007-03/117518683022324_2.html

请教:pythonwin – Python新手问题 – 灵蛇网 python论坛 学习与交流 – Powered by Discuz!
http://www.pythonid.com/bbs/viewthread.php?tid=2267

Python 集成开发环境完全测评与分析-Linux频道-中国IT实验室
http://linux.chinaitlab.com/Python/23144.html
PythonWin

ActiveState – ActivePython – The industry-standard Python distribution. – Dynamic Tools for Dynamic Languages
http://www.activestate.com/Products/activepython/feature_list.mhtml

http://bbs.sjtu.edu.cn/bbstcon?board=Script&reid=1223278313

Python — The eric Python IDE_逆水寒
http://hi.baidu.com/shiiuen/blog/item/69d273810b1f7fdebc3e1eed.html
eric

Riverbank &line; Software &line; PyQt &line; PyQt4 Download
http://www.riverbankcomputing.co.uk/software/pyqt/download

Python 2.5.2 Release
http://www.python.org/download/releases/2.5.2/

Eric是Python和Ruby 的编辑器IDE, 用python做的 – ChinaonRails
http://chinaonrails.com/topic/view/2171.html

Python IDE推荐 – Eric4_闲客暇居
http://hi.baidu.com/runningon/blog/item/0e8fd0c82c9354127f3e6f04.html

在Eric4下用PyQt4编写Python的图形界面程序_闲客暇居
http://hi.baidu.com/runningon/blog/item/115662279ff36a06918f9d0b.html

WingIDE的破解_Forrest World
http://hi.baidu.com/forestener/blog/item/d54b1ef02cb745c17931aaee.html

Python IDE 测评
http://www.hackhome.com/InfoView/Article_79113_3.html

Pythonwin VS Eclipse PyDev – AICER – C++博客
http://www.cppblog.com/Squirrel/archive/2006/05/15/7187.aspx

Builder.com.cn – 软件实践 – 学习Python语言必备的资源
http://www.builder.com.cn/developer/design/story/0,3800066918,39031651,00.htm

1.2. Windows 上的 Python
http://www.woodpecker.org.cn/diveintopy_5_4/installing_python/windows.html

Windows平台的Ruby IDE点评(1) – 51CTO.COM
http://www.51cto.com/art/200703/43367.htm

python IDE比较与推荐–博客之家
http://malonely.bloghome.cn/posts/177939.html

可爱的 Python: Python IDE 测评
http://www.ibm.com/developerworks/cn/linux/sdk/python/charm-14/

python IDE–博客之家
http://malonely.bloghome.cn/posts/177938.html

python的IDE简介_追浪
http://hi.baidu.com/webtalk/blog/item/f822534e02252508b3de0591.html

用WPF轻松打造iTunes CoverFlow效果-开发频道-iTunes-天极网
http://dev.yesky.com/148/7613148.shtml

WPF中gridview的一些问题
http://topic.csdn.net/u/20080819/23/b0f9d2ba-cf63-408e-8c8e-55503460f153.html

The MossyBlog Times. : WPF Grid is in Play
http://blogs.msdn.com/msmossyblog/archive/2007/01/28/wpf-grid-is-in-play.aspx

Chad Campbell\’s Blog (No relation to Wayne): Windows Presentation Foundation – How to display a static HTML page
http://proxy-surf.info/index.php?hl=f5&q=uggc%3A%2F%2Fpbeahpbcvn30.oybtfcbg.pbz%2F2006%2F11%2Fjvaqbjf-cerfragngvba-sbhaqngvba-ubj-gb.ugzy

可移动窗口 – 移动未来,创业未来 – 博客园
http://www.cnblogs.com/nicolas185/articles/307087.html

CodeProject: Transparency and Opacity Experiments with .NET\’s Web Browser Control. Free source code and programming help
http://secure.codeproject.com/KB/dotnet/Web_Browser_Control.aspx

对大文件怎么怎么算MD5呢?
http://topic.csdn.net/u/20080612/11/bd9e0097-bbbb-44b9-a68a-278132c22f7c.html?628413566
MD5(不光MD5,现在所知的安全散列算法都一样)的结果不受分段方式影响, 只要稀饭你就可以一个字节一个字节的读, 只是慢点而已 …

使用Grid来对WPF页面进行布局排版(3) – 电脑编程技巧与维护
http://www.comprg.com.cn/detail.asp?hw_id=2853
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30"/>
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="2*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.Row="0" Background="RosyBrown" ></Label>
<Label Grid.Column="1" Grid.Row="0" Background="SkyBlue" >1234567890</Label>
<Label Grid.Column="2" Grid.Row="0" Background="Red" ></Label>
<Label Grid.Column="0" Grid.Row="1" Background="SpringGreen" ></Label>
<Label Grid.Column="1" Grid.Row="1" Background="RoyalBlue" >abc</Label>
<Label Grid.Column="2" Grid.Row="1" Background="Violet" ></Label>
</Grid>
</Window>

历史博文

标签:,
六月 20, 2009 at 8:12 下午 by yippee 1,017 次
Category: Info
Tags: ,