32 lines
835 B
C#
32 lines
835 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mitria_Argument_Creater
|
|
{
|
|
public partial class MainForm : Form
|
|
{
|
|
public MainForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void MainForm_Load(object sender, EventArgs e)
|
|
{
|
|
textBox1.Text = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),".minecraft");
|
|
listView_Version.Items.Add("1");
|
|
listView_Version.Items.Add("1");
|
|
listView_Version.Items.Add("1");
|
|
listView_Version.Items.Add("1");
|
|
listView_Version.Items.Add("1");
|
|
|
|
}
|
|
}
|
|
}
|