Silverlight边栏小工具全局变量

时间:2013-03-04 16:18:13

标签: c# silverlight sidebar windows-desktop-gadgets

我正在制作侧边栏小工具,我需要在设置页面中的组合框中设置变量。我需要使这个变量成为一个全局变量,所以我可以从其他页面访问它(停靠,取消停靠等)我试图设置一个全局类并将一个全局变量添加到web.config页面,没有运气。我陷入了困境之中。

这是我尝试过的全球课程:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace SilverlightGadgetDebugger
{
    class GlobalClass
    {
        public static class StaticClass
        {
            public static string myTime
            {
                get;
                set;
            }
        }
    }  
}

我无法调用此全局类(位于SilverlightGadgetDebugger中),这是web.config文件:

<?xml version="1.0"?>
<!--  For more information on how to configure your ASP.NET application, please visit 
http://go.microsoft.com/fwlink/?LinkId=169433  -->

<configuration>
  <system.web>
    <compilation debug="true" strict="false" explicit="true"/>
  </system.web>
<appSettings>
    <add key="myTime" value="16:00:00"/>
</appSettings>
</configuration>

0 个答案:

没有答案