Example #1
0
        private ContactFormWindow(string subject = "", string bodyText = "")
            : base(500, 550)
        {
            Title = new LocalizedString("MatterControl: Submit an Issue").Translated;

            BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;

            contactFormWidget = new ContactFormWidget(subject, bodyText);

            AddChild(contactFormWidget);
            AddHandlers();

            ShowAsSystemWindow();
            MinimumSize = new Vector2(500, 550);
        }
Example #2
0
        private ContactFormWindow(string subject = "", string bodyText = "")
            : base(500, 550)
        {
            AlwaysOnTopOfMain = true;
            Title             = "MatterControl: Submit Feedback".Localize();

            BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;

            contactFormWidget = new ContactFormWidget(subject, bodyText);

            AddChild(contactFormWidget);
            AddHandlers();

            ShowAsSystemWindow();
            MinimumSize = new Vector2(500, 550);
        }
Example #3
0
        private ContactFormWindow(string subject = "", string bodyText = "")
            : base(500, 550)
        {
            AlwaysOnTopOfMain = true;
            Title             = LocalizedString.Get("MatterControl: Submit an Issue");

            BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;

            contactFormWidget = new ContactFormWidget(subject, bodyText);

#if __ANDROID__
            this.AddChild(new SoftKeyboardContentOffset(contactFormWidget));
#else
            AddChild(contactFormWidget);
#endif
            AddHandlers();

            ShowAsSystemWindow();
            MinimumSize = new Vector2(500, 550);
        }
        private ContactFormWindow(string subject = "", string bodyText = "")
            : base(500, 550)
        {
            Title = LocalizedString.Get("MatterControl: Submit an Issue");

            BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;

            contactFormWidget = new ContactFormWidget(subject, bodyText);

            AddChild(contactFormWidget);
            AddHandlers();

            ShowAsSystemWindow();
            MinimumSize = new Vector2(500, 550);
        }
Example #5
0
		private ContactFormWindow(string subject = "", string bodyText = "")
			: base(500, 550)
		{
			AlwaysOnTopOfMain = true;
			Title = LocalizedString.Get("MatterControl: Submit an Issue");

			BackgroundColor = ActiveTheme.Instance.PrimaryBackgroundColor;

			contactFormWidget = new ContactFormWidget(subject, bodyText);

#if __ANDROID__
			this.AddChild(new SoftKeyboardContentOffset(contactFormWidget));
#else
			AddChild(contactFormWidget);
#endif
			AddHandlers();

			ShowAsSystemWindow();
			MinimumSize = new Vector2(500, 550);
		}