masterfy

 

2009年9月2日

(转)Ext.Button点击事件的三种写法

摘要: var buttonclick = function() { //Ext.MessageBox.alert("提示", "是否保存?") //Ext.MessageBox.confirm("提示", "是否保存更改的数据?"); Ext.MessageBox.show({ title: "提示", msg: "是否保存更改的数据?", icon: Ext.MessageBox.QUESTION, buttons: { "yes": "是", "no": "否", "cancel": "取 消" }, closable: true, progress: true }); } var button = new Ext.Button({ name: "mybutton", text: "添加", handler: buttonclick }); //定义的同时通过handler方式指定事件  button.render("mypanel"); //指定显示区域,mypanel是html页中的div 阅读全文

posted @ 2009-09-02 00:09 masterfy 阅读(3606) 评论(0) 推荐(0) 编辑

2009年9月1日

(转)Ext智能提示 - Spket(Visual Studio 2008 插件)

摘要: 下载地址: http://extjs.org.cn/files/vswd-ext_2.0.2.zip 引用方法: 1、将下载回来的文件解压,并放入你的项目中。 2、新建一个.js文件,在代码行的顶部加入下述内容(注意js文件路径) /// 阅读全文

posted @ 2009-09-01 17:07 masterfy 阅读(792) 评论(0) 推荐(0) 编辑

2009年8月24日

ADO.NET Entity Framework 研究过程中遇到的问题

摘要: 问题:1、没有批量添加、删除的方法,Linq To SQL是有的。   2、调用存储过程:如果导入的函数返回值类型不是entity,则代码会生成到Model1.edmx中,不知如何调用?     如果导入返回值类型是entity,代码会生成到Model1.Designer.cs中,但执行完添加后报错,“数据读取器与指定的“rzeamtestModel.MM_BJ”不兼容。某个类型为“ID”的成员在同名的数据读取器中没有对应的列。” 阅读全文

posted @ 2009-08-24 23:05 masterfy 阅读(2302) 评论(2) 推荐(0) 编辑

2009年7月20日

怎样控制WPF GroupBox.HeaderTemplate中的控件

摘要: Border headborder = (Border)GroupBoxUC.Template.FindName("Header", GroupBoxUC); ContentPresenter headContentPresenter = (ContentPresenter)headborder.Child; DataTemplate datatemp = GroupBoxUC.HeaderTemplate; txtheader = (TextBlock)datatemp.FindName("txtHeader", headContentPresenter); btnBack = datatemp.FindName("btnBack", headContentPresenter) as Button; btnForward = datatemp.FindName("btnForward", headContentPresenter) as Button; 阅读全文

posted @ 2009-07-20 22:06 masterfy 阅读(3024) 评论(0) 推荐(0) 编辑

2009年7月7日

检测U盘

摘要: public partial class Form1 : Form { public const int WM_DEVICECHANGE = 0x219; public const int DBT_DEVICEARRIVAL = 0x8000; public const int DBT_CONFIGCHANGECANCELED = 0x0019; public const int DBT_CONF... 阅读全文

posted @ 2009-07-07 11:58 masterfy 阅读(239) 评论(0) 推荐(0) 编辑

2009年6月14日

常见C#编译器错误

摘要: 命名空间中的类型声明可以具有 public 或 internal 访问。如果没有指定可访问性,则默认是 internal。 阅读全文

posted @ 2009-06-14 01:19 masterfy 阅读(1370) 评论(1) 推荐(0) 编辑

2009年6月11日

WPF设置浏览器页面标题

摘要: //MainPage.xaml.cs的代码 public partial class MainPage : Page { public MainPage() { InitializeComponent(); } private void Page_Loaded(object sender, RoutedEventArgs e) { //设置浏览器页面标题 this.WindowTitle = Co... 阅读全文

posted @ 2009-06-11 11:21 masterfy 阅读(358) 评论(0) 推荐(0) 编辑

2009年6月9日

使用SqlException的Error Number自定义友好信息

摘要: private void DeleteMessageHandler() { try { DeleteData(); RefreshData(); } catch (Exception ex) { if (ex.GetType() == typeof(SqlException)) { SqlException sqlex = ex as SqlException; switch (sqlex.Num... 阅读全文

posted @ 2009-06-09 14:16 masterfy 阅读(808) 评论(0) 推荐(0) 编辑

2009年6月2日

WeiFenLuo.winFormsUI.Docking.dll的使用

摘要: weiFenLuo.winFormsUI.Docking.dll是开源项目DockPanel Suite的一个类库,可以实现像Visual Studio的窗口停靠、拖拽等功能。 阅读全文

posted @ 2009-06-02 15:09 masterfy 阅读(15779) 评论(3) 推荐(2) 编辑

2009年5月26日

(转)oracle系统表查询

摘要: 数据字典dict总是属于Oracle用户sys的。   1、用户:    select username from dba_users;   改口令    alter user spgroup identified by spgtest;   2、表空间:    select * from dba_data_files;    select * from dba_tablespaces;//表空间 阅读全文

posted @ 2009-05-26 09:04 masterfy 阅读(199) 评论(0) 推荐(0) 编辑

导航