启动项winform是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动项winform是啥?相关的知识,希望对你有一定的参考价值。
我电脑的启动项目里多了个winform ,命令c\WINDOWS\winform.exe 请问懂电脑的高人们这是什么东西呀?是不是病毒了?
主页没有改了。
自动:超级巡警(版本3.2)。
顺便再给你一个下载地址:http://www.dswlab.com/dow/d1.html (官方网站)
网上一度流传熊猫烧香就是该网站制造的,因为超级巡警是第一个可以完全清除熊猫烧香的杀毒软件,直到李俊被抓以后一切才水落石出,不过超级巡警的强悍由此可见一斑……
杀毒要点:
1、要在安全模式下杀毒(安全模式:启动时的时候按F8进入,要是连安全模式都进不去的话,还是重新安装系统好了,基本没有希望了,当然用启动盘进入安全模式也可以)
2、启动项的管理……
这个软件可以和别的杀毒软件并存(你没有看错,大部分杀毒软件都可以和超级巡警并存),而且很小(4m)并且完全免费,没有讨厌的序列号,适合配置比较低或者游戏玩家(因为只占用很小的资源,基本不影响电脑的速度),超级好用的,关键的是这个软件整合了U盘病毒的免疫程序(是免疫噢),以后就不用操心了
手动:先用超级巡警等软件扫描,发现病毒后,比如提示“C:\WINDOWS\system32\failp.dll感染BackDoor-CVM.dll”,你这样操作
1、 按F8进入安全模式,删除(开始-搜索)C:\WINDOWS\system32\failp.dll,找不到的话,需要在 工具-文件夹选项,显示所有文件,在搜索一次。
2、 在F8安全模式下,按开始-运行-输入regedit,编辑-查找,输入failp.dll的字符进行搜索,找到就删除,可以利用F3快捷键,查找下一个
3、 重新启动,如果想去确认,可以使用杀毒软件在进行一次扫描 参考技术B 病毒...MS这个毒不是很好清理...
LZ主页是不是被改成about:blank.la了?
-----------------------------
前段时间我就是中的这毒,改我主页.安全模式下启动项注册表exe,dll全删,最后居然还有....只好ghost还原...真可恶...
winform窗体的生命周期和事件加载顺序是啥?
winform窗体的生命周期和事件加载顺序,如下:1.窗体启动:
Control.HandleCreated
Control.BindingContextChanged
Form.Load
Control.VisibleChanged
Form.Activated
Form.Shown
2.窗体关闭:
Form.Closing
Form.FormClosing
Form.Closed
Form.FormClosed
Form.Deactivate
3.控件焦点与验证事件:
Enter
GotFocus
Leave
Validating
Validated
LostFocus
4.鼠标周期:
Enter
GotFocus
LostFocus
Leave
Validating
Validated 参考技术A 对于一个WinForm程序,如果是用VS自动创建的,那么程序的入口在这里
static class Program
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
最后一句,new Form1();调用了Form1的构造函数,而Form1的构造函数的内容是:
public Form1()
InitializeComponent();
调用了InitializeComponent();,这个函数内容是:
private void InitializeComponent()
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 12);
this.label1.TabIndex = 0;
this.label1.Text = "C#_Window";
//
// button1
//
this.button1.Location = new System.Drawing.Point(205, 238);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 1;
this.button1.Text = "执行";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// notifyIcon1
//
this.notifyIcon1.Text = "notifyIcon1";
this.notifyIcon1.Visible = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
窗体的控件定义如下:
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.NotifyIcon notifyIcon1;本回答被提问者和网友采纳
以上是关于启动项winform是啥?的主要内容,如果未能解决你的问题,请参考以下文章
主板启动项“network realtek boot agent”是啥意思?
YunDetectService.exe是啥开机启动项,能禁用么