• 大小: 0.02M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 密码  

资源简介

登陆界面记住账号密码,选择账号密码登陆功能

资源截图

代码片段和文件信息

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;
using System.Configuration;
using System.Net.Configuration;
using System.IO;


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

private void txtRead_Click(object sender EventArgs e)
{
MySection1 mySectioin1 = (MySection1)ConfigurationManager.GetSection(“MySection111“);
txtUsername1.Text = mySectioin1.UserName;
txtUrl1.Text = mySectioin1.Url;


MySection2 mySectioin2 = (MySection2)ConfigurationManager.GetSection(“MySection222“);
txtUsername2.Text = mySectioin2.Users.UserName;
txtUrl2.Text = m

评论

共有 条评论