コード例 #1
0
		/// <summary>
		///     Show a Metro Post Generator Viewer
		/// </summary>
		/// <param name="bbcode">The generated BBCode of the post.</param>
		/// <param name="modAuthor">The author of the mod.</param>
		public static void Show(string bbcode, string modAuthor)
		{
			App.AssemblyStorage.AssemblySettings.HomeWindow.ShowMask();
			var msgBox = new PostGeneratorViewer(bbcode, modAuthor)
			{
				Owner = App.AssemblyStorage.AssemblySettings.HomeWindow,
				WindowStartupLocation = WindowStartupLocation.CenterOwner
			};
			msgBox.ShowDialog();
			App.AssemblyStorage.AssemblySettings.HomeWindow.HideMask();
		}
コード例 #2
0
 /// <summary>
 /// Show a Metro Post Generator Viewer
 /// </summary>
 /// <param name="bbcode">The generated BBCode of the post.</param>
 /// <param name="modAuthor">The author of the mod.</param>
 public static void Show(string bbcode, string modAuthor)
 {
     Settings.homeWindow.ShowMask();
     var msgBox = new ControlDialogs.PostGeneratorViewer(bbcode, modAuthor)
                      {
                          Owner = Settings.homeWindow,
                          WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner
                      };
     msgBox.ShowDialog();
     Settings.homeWindow.HideMask();
 }