コード例 #1
0
 public MulManagerForm(MulManager manager)
 {
     InitializeComponent();
     m_Text = Pandora.Localization.TextProvider;
     Pandora.Localization.LocalizeControl(this);
     m_Manager = manager;
 }
コード例 #2
0
 /// <summary>
 ///     Creates a new Profile object
 /// </summary>
 public Profile()
 {
     m_Travel      = new TravelOptions();
     m_General     = new GeneralOptions();
     m_Hues        = new HuesOptions();
     m_Commands    = new CommandsOptions();
     m_Mobiles     = new MobilesOptions();
     m_Props       = new PropsOptions();
     m_Server      = new ServerOptions();
     m_Deco        = new DecoOptions();
     m_Items       = new ItemsOptions();
     m_Notes       = new Notes();
     m_Admin       = new AdminOptions();
     m_Launcher    = new LauncherOptions();
     m_Screenshots = new ScreenshotOptions();
     m_MulManager  = new MulManager();
 }
コード例 #3
0
        public MulManagerForm(MulManager manager, TextProvider tp)
        {
            InitializeComponent();
            m_Text = tp;

            Text = m_Text[Text];

            foreach (Control c in Controls)
            {
                c.Text = m_Text[c.Text];

                foreach (Control c2 in c.Controls)
                {
                    c2.Text = m_Text[c2.Text];
                }
            }

            m_Manager = manager;
        }
コード例 #4
0
 static MapViewer()
 {
     m_MulManager = new MulManager();
 }