基本信息
源码名称:独占小助手 蓝屏/黑屏模拟器 全屏显示图片/文字/纯色背景
源码大小:1.69M
文件格式:.rar
开发语言:C#
更新时间:2021-08-05
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
独占小助手,可以全屏模拟蓝屏,黑屏,还可以全屏显示图片,编辑文字,全屏纯色背景(48)色,功能新颖,可更换架构,支持net3.5,net5.0


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

namespace _000
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        bool mov = false;//初始化
        int xpos;
        int ypos;

        private void pictureBox1_Click(object sender, EventArgs e)
        {
           System.Environment.Exit(0);
        }

        private void pictureBox5_Click(object sender, EventArgs e)
        {
            new hpmk().Show();
        }

        private void pictureBox7_Click(object sender, EventArgs e)
        {
            new lpmk().Show();
        }

        private void pictureBox10_Click(object sender, EventArgs e)
        {
            new csmk().Show();
        }

        private void pictureBox3_Click(object sender, EventArgs e)
        {
            
        }

        private void pictureBox4_Click(object sender, EventArgs e)
        {
            new 软件详情().Show();
        }

       

        private void pictureBox13_Click(object sender, EventArgs e)
        {
            new sctp().Show();
        }

        private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            new 软件详情().Show();
        }

        private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
        {
            new syff().Show();
            
        }

        
        


            private void Form1_MouseDown(object sender, MouseEventArgs e)
        {
            mov = true;
            xpos = MousePosition.X;//鼠标的x坐标为当前窗体左上角x坐标
            ypos = MousePosition.Y;//鼠标的y坐标为当前窗体左上角y坐标
        }

       
        private void Form1_MouseMove(object sender, MouseEventArgs e)
        {
            if (mov)
            {
                this.Left = MousePosition.X - xpos;//根据鼠标x坐标确定窗体的左边坐标x
                this.Top = MousePosition.Y - ypos;//根据鼠标的y坐标窗体的顶部,即Y坐标
                xpos = MousePosition.X;
                ypos = MousePosition.Y;
            }
        }

        
        private void Form1_MouseUp(object sender, MouseEventArgs e)
        {
            mov = false;//停止移动
        }

        private void Form1_MouseLeave(object sender, EventArgs e)
        {
            xpos = 0; //设置初始状态
            ypos = 0;
            mov = false;
        }



        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            new 软件详情().Show();
        }

        private void pictureBox16_Click(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        
        
  }
}