在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → wpf 带语音提示的通讯录实例源码(mvvm)

wpf 带语音提示的通讯录实例源码(mvvm)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.66M
  • 下载次数:27
  • 浏览次数:384
  • 发布时间:2018-05-14
  • 实例类别:C#语言基础
  • 发 布 人:东方俊彦
  • 文件格式:.7z
  • 所需积分:2
 相关标签: wpf 通讯录 MVVM

实例介绍

【实例简介】

【实例截图】

【核心代码】

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Collections;
using System.Speech.Recognition;
using System.IO;

namespace B1103492
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        #region 启动前的准备

        public MainWindow()
        {
            InitializeComponent();
        }

        private void MainWindow_Loaded
            (object sender, RoutedEventArgs e)
        {

            this.Icon =
                DealImage.GetWpfIconFromFile("ImagesOfTitle/ico.ico");

            loadTitleGif();
            loadTitle();
            AddAllPeople();
            AddBackGroundForButtons();
        }

        private void loadTitle()
        {
            string titlePath = "Information/File/标题.txt";
            try
            {
                this.Title = File.ReadAllText(titlePath,Encoding.Default);
            }
            catch (Exception)
            {
                this.Title = "B1103492班通讯录";
            }
        }

        private void AddBackGroundForButtons()
        {
            buttonHelp.Background =
                DealImage.GetImageBrushFromUri
                    ("ImagesOfTitle/Help.png");
            buttonSearch.Background =
                DealImage.GetImageBrushFromUri
                    ("ImagesOfTitle/Search.png");
            buttonSetVoice.Background =
                DealImage.GetImageBrushFromUri
                    ("ImagesOfTitle/SetVoice.png");
            buttonAddPerson.Background =
                DealImage.GetImageBrushFromUri
                    ("ImagesOfTitle/Add.png");
            buttonDeletePerson.Background =
                DealImage.GetImageBrushFromUri
                    ("ImagesOfTitle/Delete.png");
        }

        private void loadTitleGif()
        {
            // this following code from
            // http://www.codeproject.com/Articles/23625/GIF-animation-in-WPF
            // is changed somewhere.
            System.Drawing.Color color = System.Drawing.Color.Orange;
            System.Drawing.Brush solidBrush = new System.Drawing.SolidBrush(color);
            AnimatedImageControl titleGif =
                new AnimatedImageControl
                    (this, B1103492.Properties.Resources.B1103492, solidBrush);
            titleGif.Height = TitleTopChild.Height - 5;
            
            TitleTopChild.Children.Add(titleGif);
            titleGif.HorizontalAlignment = HorizontalAlignment.Left;
            titleGif.Margin = new Thickness(5, 5, 5, 5);
        }

        public void AddAllPeople()
        {
            mainGrid.Children.Clear();
            Hashtable Persons;
            Persons = LowestData.LinqSelectString();
            mainGrid.Children.Add(new FishPhotosShowSubWindow(Persons));
        }
        #endregion

        #region 窗口各个按键的实现
        private void buttonSearch_Click(object sender, RoutedEventArgs e)
        {
            new SearchResultWindow(textBoxSearch.Text);
        }

        private void buttonHelp_Click(object sender, RoutedEventArgs e)
        {
            // 参考程序 http://www.oschina.net/code/snippet_254557_10361
            // 有改动,上面网址也是参考的别人的程序,在此不再向上追述。
            String strURL = "readme.htm";
            try
            {
                System.Diagnostics.Process.Start(strURL);
                
            }
            catch (System.ComponentModel.Win32Exception noBrowser)
            {
                if (noBrowser.ErrorCode == -2147467259)
                    MessageBox.Show(noBrowser.Message);
            }
            catch (System.Exception other)
            {
                MessageBox.Show(other.Message);
            }
        }

        private void buttonSetVoice_Click(object sender, RoutedEventArgs e)
        {
            new SetVoice().Show();
        }

        private void buttonAuthor_Click(object sender, RoutedEventArgs e)
        {
            new AboutForm().Show();
        }

        private void buttonAddPerson_Click(object sender, RoutedEventArgs e)
        {
            PersonInformationWindow piw=new PersonInformationWindow();
            piw.WindowStartupLocation=WindowStartupLocation.CenterScreen;
            piw.Show();
        }

        private void buttonDeletePerson_Click(object sender, RoutedEventArgs e)
        {
            if (
            MessageBox.Show("你要删除通讯录吗?\n想就确定,如果只是想删除某个人,"
                  "\n点击取消,然后"
                  "\n进入相应页面点击删除!",
                "删除联系人",
                MessageBoxButton.OKCancel,
                MessageBoxImage.Warning,
                MessageBoxResult.Cancel)
                == MessageBoxResult.OK)
            {
                LowestData.psuDeleteAll();
                AddAllPeople();
            }
        }

        private void buttonViewAllPerson_Click(object sender, RoutedEventArgs e)
        {
            String pathOfAllPerson2003 = 
                Environment.CurrentDirectory
                 "/"
                 "Information/File/文本通讯录.xls";
            // 下面是备用地址,如果上面打不开,就用下面这种形式
            String pathOfAllPerson2007 =
                Environment.CurrentDirectory
                  "/"
                  "Information/File/文本通讯录.xlsx";
                
            try
            {
                System.Diagnostics.Process.Start(pathOfAllPerson2003);
            }
            catch (System.IO.FileNotFoundException)
            {
                System.Diagnostics.Process.Start(pathOfAllPerson2007);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message
                     "\n您没有\n“"   pathOfAllPerson2003 
                      "”\n或者\n“"   pathOfAllPerson2007 "”\n"
                     "建议您把要打开的通信录放到上述目录下\n"
                     "或者没有安装打开.xls,.xlsx的软件,或文件损坏",
                    "文件打开失败",
                    MessageBoxButton.OK,
                    MessageBoxImage.Error);
            }
        }
        #endregion

        #region 语音识别的实现(SpeechToText)

        private bool isInitializeSpeechToText = false;
        private void GetTextFromSpeech
            (object sender, EventArgs e)
        {
            textBoxSearch.Text = sender as string;
            new SearchResultWindow(textBoxSearch.Text);
        }

        /// <summary>
        /// 当鼠标进入到textBoxSearch,开始语音识别
        /// </summary>
        private void textBoxSearchForSpeechToText_GotFocus
            (object sender, RoutedEventArgs e)
        {
            // EventSpeechRecognized是上面的函数,
            // 实现识别后的处理。
            // LowestData.GetNames()是获取可以识别的词库
            // 本语音识别,只可以识别姓名。
            if (!isInitializeSpeechToText)
            {
                SpeechToText.Initialize(
                    LowestData.GetNames(),
                    RecognizeMode.Multiple);

                SpeechToText.GetTextFromSpeech  = new EventHandler(GetTextFromSpeech);
                isInitializeSpeechToText = true;

            }
            SpeechToText.Start();
        }

        private void textBoxSearchForSpeechToText_LostFocus(object sender, RoutedEventArgs e)
        {
            SpeechToText.End();
        }
        #endregion

        #region 关闭程序保存数据
        private void Window_Closed(object sender, EventArgs e)
        {
            // 关闭程序前,保存数据。
            LowestData.saveToXml();

            App.MyNotifyIcon.Visible = false;

            // 下面这句话必须放到最后,否则他后面的不能执行。
            Environment.Exit(0);
        }
        #endregion
    }
}

标签: wpf 通讯录 MVVM

实例下载地址

wpf 带语音提示的通讯录实例源码(mvvm)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警