mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-21 03:39:34 +08:00
16 lines
297 B
C#
16 lines
297 B
C#
namespace Milimoe.FunGame.Testing.Desktop.Solutions
|
|
{
|
|
public partial class ShowDetail : Form
|
|
{
|
|
public ShowDetail()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetText(string text)
|
|
{
|
|
richTextBox1.Text = text;
|
|
}
|
|
}
|
|
}
|