You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
572 B
24 lines
572 B
using log4net; |
|
using System.Windows; |
|
|
|
namespace BrilliantSightClient.Views.Dialog |
|
{ |
|
/// <summary> |
|
/// LoadingDialog.xaml 的交互逻辑 |
|
/// </summary> |
|
public partial class ExportDialog : Window |
|
{ |
|
private static readonly ILog Logger = LogManager.GetLogger(typeof(ExportDialog)); |
|
public ExportDialog() |
|
{ |
|
InitializeComponent(); |
|
this.MinWidth = 1000; |
|
this.MinHeight = 1000; |
|
} |
|
|
|
public void setValue(string content) |
|
{ |
|
Value.Text = content; |
|
} |
|
} |
|
}
|
|
|