64 lines
1.2 KiB
C#
64 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ControlLibrary
|
|
{
|
|
public partial class StatusBar : UserControl
|
|
{
|
|
|
|
|
|
#region Parameters
|
|
|
|
public string HologramSize
|
|
{
|
|
set { lblHologramSize.Text = value; }
|
|
}
|
|
|
|
public string HologramResolution
|
|
{
|
|
set { lblHologramResolution.Text = value; }
|
|
}
|
|
|
|
public string GrayRange
|
|
{
|
|
set { lblGrayRange.Text = value; }
|
|
}
|
|
|
|
public string NLayers
|
|
{
|
|
set { lblNLayers.Text = value; }
|
|
}
|
|
|
|
public string OutPath
|
|
{
|
|
set { lblOutPath.Text = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
public StatusBar()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
this.GrayRange = null;
|
|
this.HologramResolution = null;
|
|
this.HologramSize = null;
|
|
this.NLayers = null;
|
|
this.OutPath = null;
|
|
}
|
|
|
|
|
|
}
|
|
}
|