ThemeUtil.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

C#

  1. /*
  2.  Copyright (c) 2005 Poderosa Project, All Rights Reserved.
  3.  This file is a part of the Granados SSH Client Library that is subject to
  4.  the license included in the distributed package.
  5.  You may not use this file except in compliance with the license.
  6.  $Id: ThemeUtil.cs,v 1.2 2005/04/20 09:06:03 okajima Exp $
  7. */
  8. using System;
  9. using System.Drawing;
  10. using System.Runtime.InteropServices;
  11. using System.Windows.Forms;
  12. namespace Poderosa.UI
  13. {
  14. //Look & Feel傪曄峏偡傞偨傔偺巇慻傒
  15. public class ThemeUtil {
  16. public enum Theme {
  17. Unspecified,
  18. Luna
  19. }
  20. private static Theme _theme;
  21. public static Theme CurrentTheme {
  22. get {
  23. return _theme;
  24. }
  25. }
  26. [DllImport("uxtheme.dll", CharSet=CharSet.Unicode)]
  27. private static extern int GetCurrentThemeName(char[] filename, int filenamelen, char[] colorbuff, int colornamelen, char[] sizebuff, int sizebufflen);
  28. private static void SpecifyThemeUnderWinXP() {
  29. try {
  30. char[] fn = new char[256];
  31. char[] cb = new char[256];
  32. char[] sz = new char[256];
  33. int r = GetCurrentThemeName(fn, 256, cb, 256, sz, 256);
  34. if(r==0) {
  35. string theme_name = new string(fn);
  36. if(theme_name.IndexOf("Luna")!=-1)
  37. _theme = Theme.Luna;
  38. }
  39. //Debug.WriteLine(String.Format("FN={0} Color={1} Size={2}", new string(fn), new string(cb), new string(sz)));
  40. }
  41. catch(Exception) {
  42. }
  43. }
  44. public static void Init() {
  45. Application.EnableVisualStyles();
  46. _theme = Theme.Unspecified;
  47. OperatingSystem os = System.Environment.OSVersion;
  48. if(os.Platform==PlatformID.Win32NT && os.Version.CompareTo(new Version(5,1))>=0)
  49. SpecifyThemeUnderWinXP();
  50. }
  51. public static Color TabPaneBackColor {
  52. get {
  53. if(_theme==Theme.Luna)
  54. return Color.FromKnownColor(KnownColor.ControlLightLight);
  55. else
  56. return Color.FromKnownColor(KnownColor.Control);
  57. }
  58. }
  59. }
  60. }