资源简介

wpf经典源码,120例,详细的wpf源码,以及教程,超详细的!!

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Text;

namespace EightBall
{
    class AnswerGenerator
    {
              
        string[] answers = new string[]{
    “Ask Again later““Can Not Predict Now““Without a Doubt“
    “Is Decidely So““Concentrate and Ask Again““My Sources Say No“
    “Yes Definitely““Don‘t Count On It““Signs Point to Yes“
    “Better Not Tell You Now““Outlook Not So Good““Most Likely“
    “Very Doubtful““As I See It Yes““My Reply is No““It Is Certain“
    “Yes““You May Rely On It““Outlook Good““Reply Hazy Try Again“
};

        public string GetRandomAnswer(string question)
        {

            Random rnd = new Random();
            
            return answers[rnd.Next(0 answers.Length)];
        }
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2010-03-26 09:34  9781430272052_source_code\Pro WPF\
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\EightBall\
     文件         808  2006-09-22 15:59  9781430272052_source_code\Pro WPF\Chapter02\EightBall\AnswerGenerator.cs
     文件         159  2010-03-01 19:28  9781430272052_source_code\Pro WPF\Chapter02\EightBall\app.config
     文件         306  2006-09-22 15:58  9781430272052_source_code\Pro WPF\Chapter02\EightBall\App.xaml
     文件         289  2007-10-18 14:58  9781430272052_source_code\Pro WPF\Chapter02\EightBall\App.xaml.cs
     文件        4956  2010-03-01 19:28  9781430272052_source_code\Pro WPF\Chapter02\EightBall\EightBall.csproj
     文件         907  2010-02-15 15:46  9781430272052_source_code\Pro WPF\Chapter02\EightBall\EightBall.sln
     文件       29696  2010-03-01 19:28  9781430272052_source_code\Pro WPF\Chapter02\EightBall\EightBall.suo
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\
     文件        2066  2006-09-22 15:58  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\AssemblyInfo.cs
     文件        2842  2010-03-01 19:28  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\Resources.Designer.cs
     文件        5618  2006-09-22 15:58  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\Resources.resx
     文件        1088  2010-03-01 19:28  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\Settings.Designer.cs
     文件         203  2006-09-22 15:58  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Properties\Settings.settings
     文件        1593  2010-02-15 15:48  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Window1.xaml
     文件         938  2007-10-18 14:59  9781430272052_source_code\Pro WPF\Chapter02\EightBall\Window1.xaml.cs
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\EightBallBrowserPage\
     文件        1506  2007-01-26 12:52  9781430272052_source_code\Pro WPF\Chapter02\EightBallBrowserPage\Window1.xaml
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\
     文件         159  2010-03-01 19:27  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\app.config
     文件        5752  2010-03-01 19:27  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\NonCompiledXaml.csproj
     文件         452  2010-01-07 18:04  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\NonCompiledXaml.csproj.user
     文件         919  2010-01-07 18:04  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\NonCompiledXaml.sln
     文件       35840  2010-03-15 13:46  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\NonCompiledXaml.suo
     文件         878  2010-02-15 20:43  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\Program.cs
     目录           0  2010-03-26 09:33  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\Properties\
     文件        2044  2006-09-01 11:07  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\Properties\AssemblyInfo.cs
     文件        2854  2010-03-01 19:27  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\Properties\Resources.Designer.cs
     文件        5618  2006-09-01 11:07  9781430272052_source_code\Pro WPF\Chapter02\NonCompiledXaml\Properties\Resources.resx
............此处省略1831个文件信息

评论

共有 条评论