标题:linkvisited 的理解 方法里面可以定义类?
只看楼主
於晓琪123
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2014-11-4
结帖率:71.43%
 问题点数:0 回复次数:0 
linkvisited 的理解 方法里面可以定义类?
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

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

        private void lnkform_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Form f2 = new Form();
            f2.Show();
            lnkform.LinkVisited = true;
        }

        private void lnkfile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            lnkfile.LinkVisited = true;
            System.Diagnostics.Process.Start(@"C:\Users\Administrator\Desktop\图片,电影\普通\u=2226194089,2317048390&fm=23&gp=0.jpg");
        }

        private void lnkweb_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            lnkweb.LinkVisited = true;
            System.Diagnostics.Process.Start("http://www.baidu.com/");
        }
 }
问题一:我现在脑子里是类里面包含方法 但方法里不能定义一个类 这是正确的嘛? Form f2 = new Form();这个地方就是在方法里定义了一个新的类吧。能不能详细解释一下这个问题.
问题二;为什么所有的linklabel都要用一般  .linkvisited =true  难道默认的都是false?
搜索更多相关主题的帖子: private public 
2014-12-08 10:57



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-439713-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.165123 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved