| 1234567891011121314151617181920212223242526272829303132333435 |
- using PlcUiControl;
- using Sunny.UI;
- 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 PlcUiForm;
- namespace YangjieTester.点检视图
- {
- [FormDescriptionAttribute("点检视图画面")]
- public partial class OtherForm : PlcBaseForm
- {
- public OtherForm()
- {
- InitializeComponent();
- }
- private void OtherForm_Load(object sender, EventArgs e)
- {
- uiTextBox1.Text = string.Join(Environment.NewLine, AppSession.UserOperations.AsEnumerable()
- .Reverse()
- .ToList());
- uiTextBox2.Text = string.Join(Environment.NewLine, AppSession.ReadWriteErrors.AsEnumerable()
- .Reverse()
- .ToList());
- }
- }
- }
|