• 大小: 1.31M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-15
  • 语言: C#
  • 标签: 其他  

资源简介

sU-WV-C#比赛记时软件.rar

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Media;
using System.Text;
using System.Windows;
using System.Windows.Forms;

namespace MatchTimeNET
{
    public partial class Main : Form
    {
        Shadow sfrom = new Shadow();
        private int totalSecond = 299;
        private int tenthSecond = 9;
        //投影窗口是否打开
        bool windowflag = false;
        public Main()
        {
            InitializeComponent();

            Screen[] sc = Screen.AllScreens;
            //ArrayList实现了IList接口,可直接做ComboBox控件的数据源 
            Dictionary kvDictonary = new Dictionary();
            //当前屏幕
            string CurrentScreenName = Screen.FromControl(this).DeviceName;
            int cmbscreenitem = 0;
            for (int i = 0; i < sc.Length; i++)
            {
                if (CurrentScreenName.Equals(sc[i].DeviceName))
                {
                    cmbscreenitem = i;
                }
                kvDictonary.Add(i sc[i].DeviceName);
            }
            BindingSource bs = new BindingSource();
            bs.DataSource = kvDictonary;
            //在数组的最前面插入一个元素(第0个元素)
            cmb_screen.DataSource = bs;
            cmb_screen.ValueMember = “Key“;
            cmb_screen.DisplayMember = “Value“;
            if (sc.Length > 1 && cmbscreenitem != sc.Length)
            {
                cmb_screen.SelectedIndex = cmbscreenitem + 1;
            }

            Dictionary kvcolor = new Dictionary();
            kvcolor.Add(0 “绿“);
            kvcolor.Add(1 “红“);
            kvcolor.Add(2 “黄“);
            kvcolor.Add(3 “蓝“);
            kvcolor.Add(4 “深蓝“);
            kvcolor.Add(5 “品红“);
            kvcolor.Add(6 “灰“);
            kvcolor.Add(7 “白“);
            bs = new BindingSource();
            bs.DataSource = kvcolor;
            //在数组的最前面插入一个元素(第0个元素)
            cmb_color.DataSource = bs;
            cmb_color.ValueMember = “Key“;
            cmb_color.DisplayMember = “Value“;
            cmb_color.SelectedIndex = 1;
            //当前屏幕
            this.lab_msg.Text = “当前显示器:“ + CurrentScreenName;

        }
        /// 
        /// 更新设定
        /// 

        /// 
        /// 
        private void btn_update_Click(object sender EventArgs e)
        {
            //更新颜色
            update_color();
            //设置背景透明
            sfrom.SetOpacity(float.Parse(txt_Opacity.Text));
            if (windowflag)
            {
                update_windowsstyle();
            }
        }

        private void timer1_Tick(object sender EventArgs e)
        {
            if (radioButton2.Checked)
            {
                daojishi();
            }
        }


        /// 

        /// 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件          0  2019-11-21 11:32  sU-WV-C#比赛记时软件\1.bmp

     文件     154112  2018-09-27 09:56  sU-WV-C#比赛记时软件\Debug\MatchTime.exe

     文件     389932  2018-09-27 09:56  sU-WV-C#比赛记时软件\Debug\MatchTime.ilk

     文件     733184  2018-09-27 09:56  sU-WV-C#比赛记时软件\Debug\MatchTime.pdb

     文件        138  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\app.config

     文件      33280  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.exe

     文件        138  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.exe.config

     文件      50688  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.pdb

     文件      22704  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.vshost.exe

     文件        138  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.vshost.exe.config

     文件        490  2013-03-18 17:00  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\MatchTimeNET.vshost.exe.manifest

     文件      35570  2018-09-28 08:57  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\Resources\Music\end.mp3

     文件     186282  2018-09-28 09:26  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Debug\Resources\Music\end.wav

     文件      31744  2018-09-28 11:29  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Release\MatchTimeNET.exe

     文件        138  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Release\MatchTimeNET.exe.config

     文件      48640  2018-09-28 11:29  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Release\MatchTimeNET.pdb

     文件      35570  2018-09-28 08:57  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Release\Resources\Music\end.mp3

     文件     186282  2018-09-28 09:26  sU-WV-C#比赛记时软件\MatchTimeNET\bin\Release\Resources\Music\end.wav

     文件      12202  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\Main.cs

     文件      26066  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\Main.Designer.cs

     文件      21222  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\Main.resx

     文件       4893  2018-09-28 09:29  sU-WV-C#比赛记时软件\MatchTimeNET\MatchTimeNET.csproj

     文件        498  2018-09-28 09:29  sU-WV-C#比赛记时软件\MatchTimeNET\MatchTimeNET.csproj.user

     文件       1692  2018-09-27 17:36  sU-WV-C#比赛记时软件\MatchTimeNET\MatchTimeNET_TemporaryKey.pfx

     文件        312  2019-10-17 10:14  sU-WV-C#比赛记时软件\MatchTimeNET\MyEventArg.cs

     文件       6167  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6349  2019-02-15 09:57  sU-WV-C#比赛记时软件\MatchTimeNET\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件         42  2018-09-27 15:55  sU-WV-C#比赛记时软件\MatchTimeNET\obj\Debug\MatchTimeNET.csproj.CoreCompileInputs.cache

     文件       2227  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\obj\Debug\MatchTimeNET.csproj.FileListAbsolute.txt

     文件        905  2019-02-15 09:58  sU-WV-C#比赛记时软件\MatchTimeNET\obj\Debug\MatchTimeNET.csproj.GenerateResource.Cache

............此处省略73个文件信息

评论

共有 条评论