最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

"請做一個(gè)長壽的程序員"

2023-06-09 23:54 作者:鄭守燦  | 我要投稿

using System;

using System.Collections.Generic;

using System.Reflection;

using UnityEditor;

using UnityEngine;


namespace UKit.Utility.Editor

{

??public class GUIStyleSampleWindow : EditorWindow

??{

????private Vector2 m_ScrollViewPosition = Vector2.zero;

????private List<GUIStyle> m_AllGUIStyleList;

????private List<GUIStyle> m_ShowingGUIStyleList;

????private bool m_IsShowText = true;

????private Vector2 m_CellSize = new Vector2(200, 100);

????private string m_SearchString;

????private bool m_HasInit;

????[MenuItem("UKit/GUIStyleSamples")]

????private static void ShowWindow()

????{

??????var window = GetWindow<GUIStyleSampleWindow>();

??????window.titleContent = new GUIContent("GUIStyleSamples");

??????window.Show();

????}


????private void TryInit()

????{

??????if (m_HasInit)

????????return;


??????m_AllGUIStyleList = new List<GUIStyle>(700);

??????m_ShowingGUIStyleList = new List<GUIStyle>(700);

???????

??????var pp = GUI.skin.GetType().GetProperties();

??????for (int i = 0; i < pp.Length; i++)

??????{

????????if (pp[i].GetValue(GUI.skin) is GUIStyle style)

????????{

??????????m_AllGUIStyleList.Add(style);

??????????m_ShowingGUIStyleList.Add(style);

????????}

??????}


??????var styles = GUI.skin.GetType().GetField("m_CustomStyles", BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic).GetValue(GUI.skin) as GUIStyle[];

??????if (styles != null)

??????{

????????for (int i = 0; i < styles.Length; i++)

????????{

??????????var style = styles[i];

??????????m_AllGUIStyleList.Add(style);

??????????m_ShowingGUIStyleList.Add(style);

????????}

??????}


??????this.m_HasInit = true;

????}


????private void UpdateShowingGUIStyleList()

????{

??????this.m_ShowingGUIStyleList.Clear();

??????var isShowAll = string.IsNullOrEmpty(this.m_SearchString);

??????var lowerSearchString = isShowAll ? "" : this.m_SearchString.ToLower();

??????for (int i = 0; i < m_AllGUIStyleList.Count; i++)

??????{

????????var style = m_AllGUIStyleList[i];

????????if (style.name.ToLower().Contains(lowerSearchString))

????????{

??????????this.m_ShowingGUIStyleList.Add(style);

????????}

??????}

???????

????}


????private void OnGUI()

????{

??????this.TryInit();


??????this.DrawHeader();


??????var column = Math.Max((int)(this.position.width / m_CellSize.x), 6);

??????this.m_ScrollViewPosition = GUILayout.BeginScrollView(this.m_ScrollViewPosition);

??????this.DrawStyles(column);

??????GUILayout.EndScrollView();

????}


????private void DrawHeader()

????{

??????GUILayout.BeginHorizontal(GUI.skin.GetStyle("PreBackground"), GUILayout.Height(24));

??????this.m_IsShowText = GUILayout.Toggle(this.m_IsShowText, "Show text", GUILayout.Width(120));

??????GUILayout.Label("Search", GUILayout.Width(50));

??????var newSearchString = GUILayout.TextField(this.m_SearchString, GUILayout.Width(200));

??????if (newSearchString != this.m_SearchString)

??????{

????????this.m_SearchString = newSearchString;

????????this.UpdateShowingGUIStyleList();

??????}

??????GUILayout.EndHorizontal();

????}

?????

????private void DrawStyles(int column)

????{

??????GUILayout.BeginVertical();

??????for (int i = 0; i < m_ShowingGUIStyleList.Count; i++)

??????{

????????if (i % column == 0)

????????{

??????????GUILayout.Space(2);

??????????GUILayout.BeginHorizontal();

????????}


????????GUILayout.Space(4);

????????GUILayout.BeginVertical(GUI.skin.window, GUILayout.Width(m_CellSize.x), GUILayout.Height(m_CellSize.y));

????????var style = this.m_ShowingGUIStyleList[i];

????????GUILayout.Space(-18);

????????GUILayout.TextField($"{(i + 1).ToString("D3")}:{style.name}");

????????if (GUILayout.Button(this.m_IsShowText ? "Text" : "??", style))

????????{

??????????GUIUtility.systemCopyBuffer = $"GUI.skin.GetStyle(\"{style.name}\")";

??????????Debug.Log($"復(fù)制到剪切板:{GUIUtility.systemCopyBuffer}");

????????}

????????GUILayout.EndVertical();


????????if (i % column == column - 1 || i == m_ShowingGUIStyleList.Count - 1)

????????{

??????????GUILayout.EndHorizontal();

??????????GUILayout.Space(2);

????????}

??????}

??????GUILayout.EndVertical();

????}

??}

}

"請做一個(gè)長壽的程序員"的評論 (共 條)

分享到微博請遵守國家法律
沂水县| 安乡县| 扶风县| 恩施市| 抚松县| 无极县| 全南县| 乐至县| 沁源县| 鲁甸县| 兴义市| 安多县| 台湾省| 三明市| 桂阳县| 赣榆县| 洛川县| 托里县| 隆昌县| 天峻县| 望谟县| 无棣县| 永嘉县| 石城县| 义马市| 涞水县| 师宗县| 宜州市| 乡宁县| 临潭县| 繁峙县| 东港市| 老河口市| 北京市| 神木县| 清涧县| 景谷| 利川市| 广河县| 宁陕县| 和静县|