You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB
C#

1 month ago
// <copyright file="XtraForm1.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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;
using DevExpress.XtraEditors;
namespace PcgDrawR
{
/// <summary>
/// The xtra form1.
/// </summary>
public partial class XtraForm1 : DevExpress.XtraEditors.XtraForm
{
/// <summary>
/// Initializes a new instance of the <see cref="XtraForm1"/> class.
/// </summary>
public XtraForm1()
{
InitializeComponent();
}
/// <summary>
/// Xtras the form1_ load.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The e.</param>
private void XtraForm1_Load(object sender, EventArgs e)
{
UCDrawEdit drawerChild = new UCDrawEdit();
this.Controls.Add(drawerChild);
drawerChild.Dock = DockStyle.Fill;
string strFile = "C:\\temp\\统计出的数据.kev";
this.ucDrawEdit1.OpenFile(strFile);
}
}
}