代码拉取完成,页面将自动刷新
/*
* Copyright (C) 2013 Colin Mackie.
* This software is distributed under the terms of the GNU General Public License.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.ComponentModel;
using System.Security;
using System.Windows.Forms;
using MetroFramework.Components;
using MetroFramework.Drawing;
using MetroFramework.Interfaces;
using System.Resources;
namespace WinAuth
{
/// <summary>
/// Subclass of the MetroForm that replaces Text properties of any matching controls from the resource file
/// </summary>
[Designer("MetroFramework.Design.Controls.MetroLabelDesigner, " + MetroFramework.AssemblyRef.MetroFrameworkDesignSN)]
[ToolboxBitmap(typeof(Form))]
public class ResourceForm : MetroFramework.Forms.MetroForm
{
/// <summary>
/// Comparer that checks two types and returns trues if they are the same or one is based on the other
/// </summary>
class BasedOnComparer : IEqualityComparer<Type>
{
/// <summary>
/// Check if two types are equal or subclassed
/// </summary>
/// <param name="t1"></param>
/// <param name="t2"></param>
/// <returns>true if equal or subclassed</returns>
public bool Equals(Type t1, Type t2)
{
return (t1 == t2 || t2.IsSubclassOf(t1));
}
/// <summary>
/// Get the hash code for a Type
/// </summary>
/// <param name="t"></param>
/// <returns></returns>
public int GetHashCode(Type t)
{
return t.GetHashCode();
}
}
/// <summary>
/// Create the new form
/// </summary>
public ResourceForm()
: base()
{
}
/// <summary>
/// Search the resources for any _FORMNAME_CONTROLNAME_ strings and replace the text
/// </summary>
/// <param name="e"></param>
protected override void OnLoad(EventArgs e)
{
// go through all controls and set any text from resources (including this form)
//var controls = GetControls(this, new Type[] { typeof(MetroFramework.Controls.MetroLabel), typeof(MetroFramework.Controls.MetroCheckBox) });
var controls = GetControls(this);
string formname = "_" + this.Name + "_";
string text = WinAuthMain.StringResources.GetString(formname, System.Threading.Thread.CurrentThread.CurrentCulture);
if (text != null)
{
this.Text = text;
}
foreach (Control c in controls)
{
string controlname = formname + c.Name + "_";
text = WinAuthMain.StringResources.GetString(controlname, System.Threading.Thread.CurrentThread.CurrentCulture);
if (text != null)
{
if (c is MetroFramework.Controls.MetroTextBox)
{
((MetroFramework.Controls.MetroTextBox)c).PromptText = text;
}
else
{
c.Text = text;
}
}
}
base.OnLoad(e);
}
/// <summary>
/// Get a recursive list of all controls that match the array of types
/// </summary>
/// <param name="control">parent control</param>
/// <param name="controlTypes">array of types to match</param>
/// <param name="controls">existing list of Controls to add to</param>
/// <returns>list of Control objects</returns>
private List<Control> GetControls(Control control, Type[] controlTypes = null, List<Control> controls = null)
{
if (controls == null)
{
controls = new List<Control>();
}
BasedOnComparer baseComparer = new BasedOnComparer();
foreach (Control c in control.Controls)
{
if (controlTypes == null || controlTypes.Contains(c.GetType(), baseComparer) == true)
{
controls.Add(c);
}
if (c.Controls != null && c.Controls.Count != 0)
{
GetControls(c, controlTypes, controls);
}
}
return controls;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。