资源简介
个人通讯录系统, 基于C#编程,程序员在编程的过程中可以参考学习使用,希望对IT程序员有用,此源码程序简单易懂、方便阅读,有很好的学习价值!
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using System.IO;
namespace MyFriends
{
///
///App.xaml的交互逻辑
///
public partial class App : Application
{
private string xmlFilename = “MyFriends.xml“;
public App ()
{
}
private void Application_Startup(object sender StartupEventArgs e)
{
//初始化全局应用程序属性
Application.Current.Properties[“SavedDetailsFileName“] = xmlFilename;//保存文件名
Application.Current.Properties[“FullxmlPath“] = //完整的xml路径
Path.Combine(Environment.CurrentDirectory xmlFilename);
Application.Current.Properties[“SaveFolder“] = //将要保存到的文件夹
Environment.CurrentDirectory;
Application.Current.Properties[“SelectedDisplaystyle“] = //默认的显示风格
Displaystyle.GrowShrink;
if (Directory.Exists(@“C:\WINDOWS\Web\Wallpaper“))
//设置默认的选择图片路径的文件夹
Application.Current.Properties[“SelectedImagePath“] =@“C:\WINDOWS\Web\Wallpaper“;
else
Application.Current.Properties[“SelectedImagePath“] = @“C:\“;
//设置免费的Exceed的Grid的授权序列号,需要将这里更改为自己的序列号
Xceed.Wpf.DataGrid.Licenser.LicenseKey = “DGP30-E852N-G9C6E-DW5A“;
//返回一个FriendsList对象的实例
FriendsList.Instance();
}
private void Application_Exit(object sender ExitEventArgs e)
{
try
{//SaveOnExit方法将当前的所有联系人保存到xml文件中
xmlFileOperations.SaveOnExit();
}
catch
{//如果保存失败,显示失败信息
MessageBox.Show(“保存文件时失败!“);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 869348 2008-08-15 15:02 Xceed.Wpf.DataGrid.xm
----------- --------- ---------- ----- ----
869348 1
- 上一篇:C# 在线留言簿系统
- 下一篇:C#推箱子小游戏
评论
共有 条评论