Exemple #1
0
        public AssignAuth(StringAuthManager Mgr, string Title)
        {
            this.InitializeComponent();

            TitleText.Text = Title;
            Canceled       = true;
            AuthMgr        = Mgr;

            StringResources stx = StringResources.Load("Message");

            PrimaryButtonText   = stx.Str("OK");
            SecondaryButtonText = stx.Str("Cancel");

            SetTemplate();
        }
Exemple #2
0
        public AssignAuth( StringAuthManager Mgr, string Title )
        {
            this.InitializeComponent();

            this.Title = Title;
            Canceled = true;
            AuthMgr = Mgr;

            StringResources stx = new StringResources( "Message" );

            PrimaryButtonText = stx.Str( "OK" );
            SecondaryButtonText = stx.Str( "Cancel" );

            SetTemplate();
        }