-
proyectoFinalPHV
this is an aplication for visual studio 2008. It includes how to developed advanced conexions for sql data bases.
- 2009-12-08 07:20:24下载
- 积分:1
-
成绩管理系统
这是一个简单的成绩管理系统,用asp.net编辑,对于初学者应该有一些帮助,希望可以提高一些想学习ASP。net学习能力的学生,希望大家可以采纳。
- 2022-04-02 04:54:33下载
- 积分:1
-
201132520411457
asp.net 跨域单点登录源码 资源类别:
.Net源码¦Asp.NET
文件大小:
43KB
(asp.net source code cross-domain single sign-on types of resources:
. Net source ¦ Asp.NET
File Size:
43KB
)
- 2012-01-04 20:12:53下载
- 积分:1
-
#usblib (SharpUSBLib) is a wrapper around the libusb project (WIN32), thus you m...
#usblib (SharpUSBLib) is a wrapper around the libusb project (WIN32), thus you must have it installed prior to using #usblib. Mike started this project because he wanted to program a power switch (GEMBIRD SIS-PM) with a USB port and didn t find any .NET USB library. One goal is to provide a platform independent (Linux/Win32 solution) USB access layer for .NET.
more information in http://www.icsharpcode.net/opensource/sharpusblib/-#usblib (SharpUSBLib) is a wrapper around the libusb project (WIN32), thus you must have it installed prior to using#usblib. Mike started this project because he wanted to program a power switch (GEMBIRD SIS-PM) with a USB port and didn t find any .NET USB library. One goal is to provide a platform independent (Linux/Win32 solution) USB access layer for .NET.
more information in http://www.icsharpcode.net/opensource/sharpusblib/
- 2022-02-22 02:20:51下载
- 积分:1
-
这是罗斌编写的VC2005编程技巧大全的源代码(5),共5部分,183MB。...
这是罗斌编写的VC2005编程技巧大全的源代码(5),共5部分,183MB。
-This is a Luo VC2005 prepared programming skills Guinness source code (5), a total of 5, 183MB.
- 2022-04-10 01:08:42下载
- 积分:1
-
Simple-chat-system
在.net环境下,使用C#编程实现一个简易聊天系统,可以实现客户端与服务器端的通信(In the. Net environment, using the C# programming to implement a simple chat system that can communicate with the server-side client)
- 2014-04-21 11:10:34下载
- 积分:1
-
thanks
一个设计的发送电子邮件的程序,不错哦。-thanks
- 2023-02-08 12:05:04下载
- 积分:1
-
在.net环境中实现多语言无缝集成的程序,对C++编写的代码进行托管包装,与c#编写的程序封装在一起。...
在.net环境中实现多语言无缝集成的程序,对C++编写的代码进行托管包装,与c#编写的程序封装在一起。
- 2022-02-02 20:27:49下载
- 积分:1
-
五子棋源代码,是在VS2003 使用MFC下开发的,电脑棋力不错
五子棋源代码,是在VS2003 使用MFC下开发的,电脑棋力不错-Gobang source code, the use of MFC in VS2003 under development, computer棋力good
- 2023-02-09 09:00:04下载
- 积分:1
-
MVVM: 关闭对话框
翻译 maninwest@Codeforge 作者 Cornelius Henning@Codeproject
我学习 MVVM 时遇到一个意外问题,关闭对话框时不如在旧的 WPF 中简单, 尤其是当你想避免背后的代码时。在此示例中,所有代码都在视图的 ViewModel 类中。
使用代码
整个项目是个可下载的 zip 文件。该项目是在Visual Studio 2012 中进行的,针对 .NET 4.5 平台。如要查看演示,请解压缩文件并进行构建。运行时,会显示一个用户,具有一个包含一个按钮的主窗口。单击按钮会打开新的具有两个按钮的对话窗口。单击任何一个按钮会执行有限的代码,然后对话框会关闭。
请注意,为了提高可读性,代码已经少得不能再少了。处理运行时错误的意外手柄也减到最少。如果你要使用此代码,务必要确保最终代码稳健且可处理任何意外或其他错误。
此代码中无使用的约束条件。你可以使用全部或者部分。
实现的说明
对话框的关闭由附加的属性控制。属性设置为 true 时,对话框会关闭。.以下是注册附加事件的代码:
using System; using System.Windows; namespace MvvmDialogDemo.AttachedProperty
{ public static class CloseDialog
{ public static readonly DependencyProperty DialogResultProperty =
DependencyProperty.RegisterAttached("DialogResult", typeof(Boolean?), typeof(CloseDialog),new PropertyMetadata(DialogResultChanged)); private static void DialogResultChanged
(DependencyO
- 2022-08-21 18:18:47下载
- 积分:1