修改图标

dep
我叫锄头 11 months ago
parent 728f612e6f
commit 2217e77968

@ -13,6 +13,9 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl.Entity
public class HslLanternAlarmEntity
{
public HslLanternAlarm HslLanternAlarm1 { get; set; }
public HslLanternAlarm HslLanternAlarm2 { get; set; }
public HslLanternAlarm HslLanternAlarm3 { get; set; }
public HslLanternAlarm HslLanternAlarm4 { get; set; }
@ -22,6 +25,12 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl.Entity
public HslLanternAlarm HslLanternAlarm8 { get; set; }
}
public class HslAgvCarEntity
{
public HslAgvCar HslAgvCar1 { get; set; }
}
public class HslLanternSimpleEntity
{
public HslLanternSimple HslLanternSimple1 { get; set; }

@ -88,6 +88,9 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl
//控件实体类
HslLanternAlarmEntity HslAlarmE = new HslLanternAlarmEntity();
HslAgvCarEntity hslAgvCarEntity = new HslAgvCarEntity();
HslLanternSimpleEntity HslLanternSimpleE = new HslLanternSimpleEntity();
MCLabelEntity LabelE = new MCLabelEntity();
SwitchLightEntity LightE = new SwitchLightEntity();
@ -177,6 +180,8 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl
private void SetAllControls()
{
ControlsHelper.ControlImport<HslLanternAlarm>(HslAlarmE, Controls);
ControlsHelper.ControlImport<HslAgvCar>(hslAgvCarEntity, Controls);
ControlsHelper.ControlImport<HslLanternSimple>(HslLanternSimpleE, Controls);
ControlsHelper.ControlImport<MCLabel>(LabelE, Controls);
ControlsHelper.ControlImport<SwitchLight>(LightE, Controls);
@ -334,7 +339,7 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl
//目前只有主线程可以
//小车到位信号
ControlsHelper.SetHslLanternAlarm(HslAlarmE.HslLanternAlarm1, reachSingle[0]);
ControlsHelper.SetHslLanternAlarm(HslAlarmE.HslLanternAlarm1, hslAgvCarEntity.HslAgvCar1, reachSingle[0]);
ControlsHelper.SetHslLanternAlarm(HslAlarmE.HslLanternAlarm2, reachSingle[1]);
ControlsHelper.SetHslLanternAlarm(HslAlarmE.HslLanternAlarm3, reachSingle[2]);
ControlsHelper.SetHslLanternAlarm(HslAlarmE.HslLanternAlarm4, reachSingle[3]);

@ -56,104 +56,104 @@ namespace Mesnac.Action.ChemicalWeighing.ManualControl
MessageBox.Show("此功能停止使用");
return;
if (GelChooseA == 0)
{
MessageBox.Show("请先选择糊化锅!");
return;
}
if (!DB2105.Force_CA.forceOn)
{
MessageBox.Show("冷水称A强制控制按钮未打开");
return;
}
if (MessageBox.Show("确认向冷水称A补充", "强制模式启动确认",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
DB2105WriteHelper.AddCaAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue1.Text));
DB2105WriteHelper.AddCaAddForceBin(GelChooseA);
DB2105WriteHelper.AddCaAddStartIn(true);
ManualLogControl("冷水称A强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue1.Text), GelChooseA);
MessageBox.Show("冷水称A强制补充");
//if (GelChooseA == 0)
//{
// MessageBox.Show("请先选择糊化锅!");
// return;
//}
//if (!DB2105.Force_CA.forceOn)
//{
// MessageBox.Show("冷水称A强制控制按钮未打开");
// return;
//}
//if (MessageBox.Show("确认向冷水称A补充", "强制模式启动确认",
// MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
//{
// return;
//}
//DB2105WriteHelper.AddCaAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue1.Text));
//DB2105WriteHelper.AddCaAddForceBin(GelChooseA);
//DB2105WriteHelper.AddCaAddStartIn(true);
//ManualLogControl("冷水称A强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue1.Text), GelChooseA);
//MessageBox.Show("冷水称A强制补充");
}
if (ButtonE.StartMetage2 == runtime.Sender)
{
MessageBox.Show("此功能停止使用");
return;
if (GelChooseA == 0)
{
MessageBox.Show("请先选择糊化锅!");
return;
}
if (!DB2105.Force_HA.forceOn)
{
MessageBox.Show("热水称A强制控制按钮未打开");
return;
}
if (MessageBox.Show("确认向热水称A补充", "强制模式启动确认",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
DB2105WriteHelper.AddHaAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue2.Text));
DB2105WriteHelper.AddHaAddForceBin(GelChooseA);
DB2105WriteHelper.AddHaAddStartIn(true);
ManualLogControl("热水称A强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue2.Text), GelChooseA);
MessageBox.Show("热水称A强制补充");
//if (GelChooseA == 0)
//{
// MessageBox.Show("请先选择糊化锅!");
// return;
//}
//if (!DB2105.Force_HA.forceOn)
//{
// MessageBox.Show("热水称A强制控制按钮未打开");
// return;
//}
//if (MessageBox.Show("确认向热水称A补充", "强制模式启动确认",
// MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
//{
// return;
//}
//DB2105WriteHelper.AddHaAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue2.Text));
//DB2105WriteHelper.AddHaAddForceBin(GelChooseA);
//DB2105WriteHelper.AddHaAddStartIn(true);
//ManualLogControl("热水称A强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue2.Text), GelChooseA);
//MessageBox.Show("热水称A强制补充");
}
if (ButtonE.StartMetage3 == runtime.Sender)
{
MessageBox.Show("此功能停止使用");
return;
if (GelChooseB == 0)
{
MessageBox.Show("请先选择糊化锅!");
return;
}
if (!DB2105.Force_CB.forceOn)
{
MessageBox.Show("冷水称B强制控制按钮未打开");
return;
}
if (MessageBox.Show("确认向冷水称B补充", "强制模式启动确认",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
DB2105WriteHelper.AddCbAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue3.Text));
DB2105WriteHelper.AddCbAddForceBin(GelChooseB);
DB2105WriteHelper.AddCbAddStartIn(true);
ManualLogControl("冷水称B强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue3.Text), GelChooseB + 4);
MessageBox.Show("冷水称B强制补充");
//if (GelChooseB == 0)
//{
// MessageBox.Show("请先选择糊化锅!");
// return;
//}
//if (!DB2105.Force_CB.forceOn)
//{
// MessageBox.Show("冷水称B强制控制按钮未打开");
// return;
//}
//if (MessageBox.Show("确认向冷水称B补充", "强制模式启动确认",
// MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
//{
// return;
//}
//DB2105WriteHelper.AddCbAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue3.Text));
//DB2105WriteHelper.AddCbAddForceBin(GelChooseB);
//DB2105WriteHelper.AddCbAddStartIn(true);
//ManualLogControl("冷水称B强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue3.Text), GelChooseB + 4);
//MessageBox.Show("冷水称B强制补充");
}
if (ButtonE.StartMetage4 == runtime.Sender)
{
MessageBox.Show("此功能停止使用");
return;
if (GelChooseB == 0)
{
MessageBox.Show("请先选择糊化锅!");
return;
}
if (!DB2105.Force_HB.forceOn)
{
MessageBox.Show("热水称B强制控制按钮未打开");
return;
}
if (MessageBox.Show("确认向热水称B补充", "强制模式启动确认",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
return;
}
DB2105WriteHelper.AddHbAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue4.Text));
DB2105WriteHelper.AddHbAddForceBin(GelChooseB);
DB2105WriteHelper.AddHbAddStartIn(true);
ManualLogControl("热水称B强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue4.Text), GelChooseB + 4);
MessageBox.Show("热水称B强制补充");
//if (GelChooseB == 0)
//{
// MessageBox.Show("请先选择糊化锅!");
// return;
//}
//if (!DB2105.Force_HB.forceOn)
//{
// MessageBox.Show("热水称B强制控制按钮未打开");
// return;
//}
//if (MessageBox.Show("确认向热水称B补充", "强制模式启动确认",
// MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
//{
// return;
//}
//DB2105WriteHelper.AddHbAddValue(Convert.ToInt16(MCTextBoxE.SetWaterValue4.Text));
//DB2105WriteHelper.AddHbAddForceBin(GelChooseB);
//DB2105WriteHelper.AddHbAddStartIn(true);
//ManualLogControl("热水称B强制补充", Convert.ToInt16(MCTextBoxE.SetWaterValue4.Text), GelChooseB + 4);
//MessageBox.Show("热水称B强制补充");
}

@ -298,6 +298,33 @@ namespace Mesnac.Action.ChemicalWeighing.Util
}
}
public static void SetHslLanternAlarm(HslLanternAlarm lanternAlarm, HslAgvCar car,RGVEntity rGV)
{
lanternAlarm.IsAlarm = false;
car.BackColor = Color.Transparent;
if (rGV.Error)
{
lanternAlarm.NormalColor = Color.Red;
car.AgvColor = Color.Red;
}
else
{
if (rGV.RequestFeed)
{
lanternAlarm.NormalColor = Color.Green;
car.AgvColor = Color.Green;
}
else
{
lanternAlarm.NormalColor = Color.DarkGray;
car.AgvColor = Color.DarkGray;
}
}
}
/// <summary>
/// 绿色胡工小灯
/// </summary>

@ -0,0 +1,233 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Mesnac.Controls.ChemicalWeighing
{
/// <summary>
/// Agv小车控件
/// </summary>
// Token: 0x02000004 RID: 4
[Description("Agv 小车控件")]
public class HslAgvCar : UserControl
{
/// <summary>
/// 实例化一个默认的对象
/// </summary>
// Token: 0x0600000C RID: 12 RVA: 0x00010BB4 File Offset: 0x0000EDB4
public HslAgvCar()
{
this.InitializeComponent();
base.SetStyle(ControlStyles.UserPaint | ControlStyles.SupportsTransparentBackColor, true);
base.SetStyle(ControlStyles.ResizeRedraw, true);
base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
}
/// <summary>
/// 获取或设置当前AGV小车的颜色信息
/// </summary>
// Token: 0x17000001 RID: 1
// (get) Token: 0x0600000D RID: 13 RVA: 0x00010C50 File Offset: 0x0000EE50
// (set) Token: 0x0600000E RID: 14 RVA: 0x00010C6D File Offset: 0x0000EE6D
[Browsable(true)]
[Description("获取或设置当前AGV小车的颜色信息")]
[Category("HslControls")]
[DefaultValue(typeof(Color), "Tomato")]
public virtual Color AgvColor
{
get
{
return this.carBrush.Color;
}
set
{
this.carBrush.Color = value;
base.Invalidate();
}
}
/// <summary>
/// 获取或设置当前的轮胎的颜色
/// </summary>
// Token: 0x17000002 RID: 2
// (get) Token: 0x0600000F RID: 15 RVA: 0x00010C84 File Offset: 0x0000EE84
// (set) Token: 0x06000010 RID: 16 RVA: 0x00010C91 File Offset: 0x0000EE91
[Browsable(true)]
[Description("获取或设置当前的轮胎的颜色")]
[Category("HslControls")]
[DefaultValue(typeof(Color), "52, 52, 52")]
public virtual Color TireColor
{
get
{
return this.darkBlack.Color;
}
set
{
this.darkBlack.Color = value;
base.Invalidate();
}
}
/// <summary>
/// 重绘控件的
/// </summary>
/// <param name="e">重绘事件</param>
// Token: 0x06000011 RID: 17 RVA: 0x00010CA8 File Offset: 0x0000EEA8
protected override void OnPaint(PaintEventArgs e)
{
bool flag = true;
if (flag)
{
Graphics graphics = e.Graphics;
graphics.SmoothingMode = SmoothingMode.HighQuality;
graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
this.PaintHslControls(graphics, base.Width, base.Height);
base.OnPaint(e);
}
}
/// <inheritdoc cref="M:HslControls.HslArrow.PaintHslControls(System.Drawing.Graphics,System.Single,System.Single)" />
// Token: 0x06000012 RID: 18 RVA: 0x00010CF8 File Offset: 0x0000EEF8
public void PaintHslControls(Graphics g, int width, int height)
{
this.PaintMain(g, width, height);
}
// Token: 0x06000013 RID: 19 RVA: 0x00010D20 File Offset: 0x0000EF20
private void PaintMain(Graphics g, int width, int height)
{
int num = (int)((float)height * 0.08f);
bool flag = width < 50 && height < 50;
if (flag)
{
num = (int)((float)height * 0.12f);
}
int num2 = (int)((float)width * 0.04f);
int num3 = (int)((float)width * 0.1f);
GraphicsPath graphicsPath = new GraphicsPath();
graphicsPath.AddArc(new Rectangle(width - num3 - num3 + 1, num, num3 + num3 - 2, num3 + num3 - 2), -90f, 90f);
graphicsPath.AddLine(new Point(width - 1, num + num3), new Point(width - 1, height - num - num3));
graphicsPath.AddArc(new Rectangle(width - num3 - num3 + 1, height - num - num3 - num3, num3 + num3 - 2, num3 + num3), 0f, 90f);
Rectangle rect = new Rectangle(num2, num, width - num2 - num3, height - num - num);
using (LinearGradientBrush linearGradientBrush = new LinearGradientBrush(new PointF(0f, (float)(height - num)), new PointF(0f, (float)num), this.carBrush.Color, HslHelper.GetColorOffset(this.carBrush.Color, height - num)))
{
linearGradientBrush.InterpolationColors = new ColorBlend
{
Positions = new float[]
{
0f,
0.1f,
0.9f,
1f
},
Colors = new Color[]
{
HslHelper.GetColorLight(this.carBrush.Color),
this.carBrush.Color,
this.carBrush.Color,
HslHelper.GetColorLight(this.carBrush.Color)
}
};
g.FillPath(linearGradientBrush, graphicsPath);
g.DrawPath(this.borderPen, graphicsPath);
g.FillRectangle(linearGradientBrush, rect);
g.DrawRectangle(this.borderPen, rect);
using (Pen pen = new Pen(HslHelper.GetColorLight(this.carBrush.Color, -15)))
{
g.DrawLine(pen, new Point(width - num3, num + 1), new Point(width - num3, height - num - 2));
}
}
int num4 = (int)((float)width * 0.12f);
int num5 = (int)((float)width * 0.28f);
Rectangle rect2 = new Rectangle(rect.X + rect.Width / 2 - num5 - num4 / 2, 0, num4, num * 2);
g.FillRectangle(this.darkBlack, rect2);
rect2.X = rect.X + rect.Width / 2 + num5 - num4 / 2;
g.FillRectangle(this.darkBlack, rect2);
rect2.X = rect.X + rect.Width / 2 - num5 - num4 / 2;
rect2.Y = height - rect2.Height;
g.FillRectangle(this.darkBlack, rect2);
rect2.X = rect.X + rect.Width / 2 + num5 - num4 / 2;
g.FillRectangle(this.darkBlack, rect2);
Point point = new Point(rect.X + rect.Width / 2, height / 2);
g.TranslateTransform((float)point.X, (float)point.Y);
int num6 = (int)((float)height * 0.36f);
g.FillEllipse(Brushes.LightGray, new Rectangle(-num6, -num6, num6 + num6, num6 + num6));
g.DrawEllipse(Pens.Gray, new Rectangle(-num6, -num6, num6 + num6, num6 + num6));
num6 = (int)((float)height * 0.33f);
for (int i = 0; i < 6; i++)
{
g.FillPie(this.darkBlack, new Rectangle(-num6, -num6, num6 + num6, num6 + num6), (float)(-115 + 60 * i), 50f);
}
num6 = (int)((float)height * 0.24f);
g.FillEllipse(Brushes.LightGray, new Rectangle(-num6, -num6, num6 + num6, num6 + num6));
num6 = (int)((float)height * 0.04f);
for (int j = 0; j < 4; j++)
{
g.FillEllipse(this.darkBlack, new Rectangle((int)((float)height * 0.16f) - num6, -num6, num6 * 2, num6 * 2));
g.RotateTransform(90f);
}
num6 = (int)((float)height * 0.06f);
g.FillEllipse(this.carBrush, new Rectangle(-num6, -num6, num6 + num6, num6 + num6));
g.TranslateTransform((float)(-(float)point.X), (float)(-(float)point.Y));
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
// Token: 0x06000014 RID: 20 RVA: 0x00011208 File Offset: 0x0000F408
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
// Token: 0x06000015 RID: 21 RVA: 0x00011240 File Offset: 0x0000F440
private void InitializeComponent()
{
base.SuspendLayout();
base.AutoScaleMode = AutoScaleMode.None;
this.BackColor = Color.Transparent;
this.Font = new Font("微软雅黑", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
base.Name = "HslAgvCar";
base.Size = new Size(58, 65);
base.ResumeLayout(false);
}
// Token: 0x0400000B RID: 11
private Color borderColor = Color.Gray;
// Token: 0x0400000C RID: 12
private Pen borderPen = new Pen(Color.Gray, 1f);
// Token: 0x0400000D RID: 13
private SolidBrush carBrush = new SolidBrush(Color.Tomato);
// Token: 0x0400000E RID: 14
private SolidBrush darkBlack = new SolidBrush(Color.FromArgb(52, 52, 52));
/// <summary>
/// 必需的设计器变量。
/// </summary>
// Token: 0x0400000F RID: 15
private IContainer components = null;
}
}

@ -123,6 +123,9 @@
<Compile Include="GanHunJi.Designer.cs">
<DependentUpon>GanHunJi.cs</DependentUpon>
</Compile>
<Compile Include="HslAgvCar.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="HslBottle.cs">
<SubType>UserControl</SubType>
</Compile>

@ -1636,6 +1636,22 @@
</DataBinding>
</Component>
<Component Name="HslAgvCar" Namespace="Mesnac.Controls.ChemicalWeighing" Asm="Mesnac.Controls.ChemicalWeighing.dll">
<Propertys>
<Property Name="Location" Caption="位置" Group=""/>
<Property Name="Name" Caption="名称" Group=""/>
<Property Name="Size" Caption="大小" Group=""/>
<Property Name="Status" Caption="状态" Group=""/>
</Propertys>
<DataBinding>
</DataBinding>
</Component>
<Component Name="HslSwitch" Namespace="Mesnac.Controls.ChemicalWeighing" Asm="Mesnac.Controls.ChemicalWeighing.dll">
<Propertys>
<Property Name="Location" Caption="λÖÃ" Group=""/>

@ -3797,7 +3797,7 @@
<Property name="TabIndex">48</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">湿混机手动控制</Property>
<Property name="Text">湿混机手动控制(千克)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 266</Property>
<Property name="Name">GroupBox48</Property>
@ -3849,7 +3849,7 @@
<Property name="Size">53, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">5-时间设定</Property>
<Property name="Text">5-时间设定(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 204</Property>
<Property name="Name">GroupBox46</Property>
@ -3910,7 +3910,7 @@
<Property name="Size">53, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">3-混合</Property>
<Property name="Text">3-混合(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 115</Property>
<Property name="Name">GroupBox44</Property>
@ -3962,7 +3962,7 @@
<Property name="Size">53, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">2-下干料</Property>
<Property name="Text">2-下干料(千克)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 52</Property>
<Property name="Name">GroupBox43</Property>
@ -4115,11 +4115,11 @@
<Property name="DbOptionType">None</Property>
<Property name="MCVisible">True</Property>
<Property name="MCEnabled">True</Property>
<Property name="Text">重量:</Property>
<Property name="Text">重量(千克)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">224, 60</Property>
<Property name="Location">216, 60</Property>
<Property name="Name">MCLabel56</Property>
<Property name="Size">41, 12</Property>
<Property name="Size">77, 12</Property>
</Object>
<Object type="Mesnac.Controls.Default.MCTextBox, Mesnac.Controls.Default, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="MaterialWeight2" children="Controls">
<Property name="KeyDownActionList">
@ -4139,9 +4139,9 @@
<Property name="MCVisible">True</Property>
<Property name="MCEnabled">True</Property>
<Property name="TextName" />
<Property name="Location">271, 53</Property>
<Property name="Location">293, 53</Property>
<Property name="Name">MaterialWeight2</Property>
<Property name="Size">80, 26</Property>
<Property name="Size">58, 26</Property>
<Property name="TabIndex">34</Property>
</Object>
<Object type="Mesnac.Controls.Default.MCLabel, Mesnac.Controls.Default, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="MCLabel55" children="Controls">
@ -4188,7 +4188,7 @@
<Property name="MCEnabled">True</Property>
<Property name="Location">77, 55</Property>
<Property name="Name">ChooseMaterial2</Property>
<Property name="Size">137, 24</Property>
<Property name="Size">133, 24</Property>
<Property name="TabIndex">33</Property>
</Object>
<Object type="System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="GroupBox41" children="Controls">
@ -4236,7 +4236,7 @@
<Property name="Size">29, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">7-时间设定</Property>
<Property name="Text">7-时间设定(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 363</Property>
<Property name="Name">GroupBox41</Property>
@ -4340,7 +4340,7 @@
<Property name="Size">65, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">8-排料等待时间设定</Property>
<Property name="Text">8-排料等待时间设定(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 424</Property>
<Property name="Name">GroupBox30</Property>
@ -4392,7 +4392,7 @@
<Property name="Size">29, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">5-时间设定</Property>
<Property name="Text">5-时间设定(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 275</Property>
<Property name="Name">GroupBox39</Property>
@ -4539,7 +4539,7 @@
<Property name="Size">35, 12</Property>
</Object>
<Property name="TabStop">False</Property>
<Property name="Text">3-搅拌</Property>
<Property name="Text">3-搅拌(分钟)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">6, 186</Property>
<Property name="Name">GroupBox37</Property>
@ -4603,11 +4603,11 @@
<Property name="DbOptionType">None</Property>
<Property name="MCVisible">True</Property>
<Property name="MCEnabled">True</Property>
<Property name="Text">重量:</Property>
<Property name="Text">重量(千克)</Property>
<Property name="Font">宋体, 9pt</Property>
<Property name="Location">224, 30</Property>
<Property name="Location">216, 30</Property>
<Property name="Name">MCLabel60</Property>
<Property name="Size">41, 12</Property>
<Property name="Size">77, 12</Property>
</Object>
<Object type="Mesnac.Controls.Default.MCTextBox, Mesnac.Controls.Default, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="MaterialWeight1" children="Controls">
<Property name="KeyDownActionList">
@ -4627,9 +4627,9 @@
<Property name="MCVisible">True</Property>
<Property name="MCEnabled">True</Property>
<Property name="TextName" />
<Property name="Location">271, 23</Property>
<Property name="Location">293, 23</Property>
<Property name="Name">MaterialWeight1</Property>
<Property name="Size">80, 26</Property>
<Property name="Size">58, 26</Property>
<Property name="TabIndex">25</Property>
</Object>
<Object type="Mesnac.Controls.Default.MCLabel, Mesnac.Controls.Default, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="MCLabel61" children="Controls">
@ -4676,7 +4676,7 @@
<Property name="MCEnabled">True</Property>
<Property name="Location">77, 25</Property>
<Property name="Name">ChooseMaterial1</Property>
<Property name="Size">137, 24</Property>
<Property name="Size">133, 24</Property>
<Property name="TabIndex">23</Property>
</Object>
<Object type="System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="GroupBox36" children="Controls">

@ -1,6 +1,11 @@
<Object type="Mesnac.Gui.Common.FrmRunTemplate, Mesnac.Gui.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="MainDetail" children="Controls">
<Object type="System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="FeededGelM255" children="Controls">
<Object type="Mesnac.Controls.ChemicalWeighing.HslAgvCar, Mesnac.Controls.ChemicalWeighing, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="HslAgvCar1" children="Controls">
<Property name="Location">891, 717</Property>
<Property name="Name">HslAgvCar1</Property>
<Property name="Size">37, 31</Property>
</Object>
<Object type="Mesnac.Controls.ChemicalWeighing.LjSwith, Mesnac.Controls.ChemicalWeighing, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" name="BU2CSF02" children="Controls">
<Property name="AlarmName" />
<Property name="SetName" />

@ -115,6 +115,8 @@
<ToolComponent chineseName="备料桶" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.BeiLiaoTong" />
<ToolComponent chineseName="自定义小车" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.HslTruck" />
<ToolComponent chineseName="HslLanternAlarm" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.HslLanternAlarm" />
<ToolComponent chineseName="HslAgvCar" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.HslAgvCar" />
<ToolComponent chineseName="HslLanternSimple" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.HslLanternSimple" />
<ToolComponent chineseName="HslLedDisplay" assembly="3" enabled="True" class="Mesnac.Controls.ChemicalWeighing.HslLedDisplay" />

Loading…
Cancel
Save