Esempio n. 1
0
		public static void Show(String title, String text, String textWithoutTitle)
		{
			var control = new ShareBox();
			control.Title = title;
			control.Text = text;
			control.TextWithoutTitle = textWithoutTitle ?? title + ": " + text;
			Show(control);
		}
Esempio n. 2
0
        public static void Show(String title, String text, String textWithoutTitle)
        {
            var control = new ShareBox();

            control.Title            = title;
            control.Text             = text;
            control.TextWithoutTitle = textWithoutTitle ?? title + ": " + text;
            Show(control);
        }