Kaynağa Gözat

Terminal CS 추가 Uart Function 추가

박영준 5 yıl önce
ebeveyn
işleme
37f908c946

BIN
.vs/Jdas_Mbic/v15/.suo


BIN
.vs/Jdas_Mbic/v15/Server/sqlite3/storage.ide-wal


+ 10 - 0
Jdas_Mbic/Jdas_Mbic.csproj

@@ -35,6 +35,7 @@
35 35
   <ItemGroup>
36 36
     <Reference Include="System" />
37 37
     <Reference Include="System.Core" />
38
+    <Reference Include="System.Windows.Forms.DataVisualization" />
38 39
     <Reference Include="System.Xml.Linq" />
39 40
     <Reference Include="System.Data.DataSetExtensions" />
40 41
     <Reference Include="Microsoft.CSharp" />
@@ -54,6 +55,12 @@
54 55
     </Compile>
55 56
     <Compile Include="Program.cs" />
56 57
     <Compile Include="Properties\AssemblyInfo.cs" />
58
+    <Compile Include="Terminal.cs">
59
+      <SubType>Form</SubType>
60
+    </Compile>
61
+    <Compile Include="Terminal.Designer.cs">
62
+      <DependentUpon>Terminal.cs</DependentUpon>
63
+    </Compile>
57 64
     <EmbeddedResource Include="Main.resx">
58 65
       <DependentUpon>Main.cs</DependentUpon>
59 66
     </EmbeddedResource>
@@ -67,6 +74,9 @@
67 74
       <DependentUpon>Resources.resx</DependentUpon>
68 75
       <DesignTime>True</DesignTime>
69 76
     </Compile>
77
+    <EmbeddedResource Include="Terminal.resx">
78
+      <DependentUpon>Terminal.cs</DependentUpon>
79
+    </EmbeddedResource>
70 80
     <None Include="Properties\Settings.settings">
71 81
       <Generator>SettingsSingleFileGenerator</Generator>
72 82
       <LastGenOutput>Settings.Designer.cs</LastGenOutput>

+ 6 - 0
Jdas_Mbic/Main.Designer.cs

@@ -28,6 +28,7 @@
28 28
         /// </summary>
29 29
         private void InitializeComponent()
30 30
         {
31
+            this.components = new System.ComponentModel.Container();
31 32
             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JdasMbic));
32 33
             this.pictureBox1 = new System.Windows.Forms.PictureBox();
33 34
             this.tabControl1 = new System.Windows.Forms.TabControl();
@@ -132,6 +133,7 @@
132 133
             this.dataGridView_TableSetting = new System.Windows.Forms.DataGridView();
133 134
             this.Column_DB = new System.Windows.Forms.DataGridViewTextBoxColumn();
134 135
             this.Column_Offset = new System.Windows.Forms.DataGridViewTextBoxColumn();
136
+            this.serialPort_JdasMbic = new System.IO.Ports.SerialPort(this.components);
135 137
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
136 138
             this.tabControl1.SuspendLayout();
137 139
             this.tabPage_Main.SuspendLayout();
@@ -1096,6 +1098,7 @@
1096 1098
             this.button3.TabIndex = 93;
1097 1099
             this.button3.Text = "Firmware Update";
1098 1100
             this.button3.UseVisualStyleBackColor = true;
1101
+            this.button3.Click += new System.EventHandler(this.button3_Click);
1099 1102
             // 
1100 1103
             // button_terminal
1101 1104
             // 
@@ -1106,6 +1109,7 @@
1106 1109
             this.button_terminal.TabIndex = 94;
1107 1110
             this.button_terminal.Text = "Terminal";
1108 1111
             this.button_terminal.UseVisualStyleBackColor = true;
1112
+            this.button_terminal.Click += new System.EventHandler(this.button_terminal_Click);
1109 1113
             // 
1110 1114
             // setcheck_checkBox
1111 1115
             // 
@@ -1145,6 +1149,7 @@
1145 1149
             this.button_PortOpen.TabIndex = 86;
1146 1150
             this.button_PortOpen.Text = "Port Open";
1147 1151
             this.button_PortOpen.UseVisualStyleBackColor = true;
1152
+            this.button_PortOpen.Click += new System.EventHandler(this.button_PortOpen_Click);
1148 1153
             // 
1149 1154
             // comboBox_Port
1150 1155
             // 
@@ -1615,6 +1620,7 @@
1615 1620
         private System.Windows.Forms.Button button_Initalize;
1616 1621
         private System.Windows.Forms.DataGridViewTextBoxColumn Column_DB;
1617 1622
         private System.Windows.Forms.DataGridViewTextBoxColumn Column_Offset;
1623
+        private System.IO.Ports.SerialPort serialPort_JdasMbic;
1618 1624
     }
1619 1625
 }
1620 1626
 

+ 230 - 0
Jdas_Mbic/Main.cs

@@ -3,7 +3,9 @@ using System.Collections.Generic;
3 3
 using System.ComponentModel;
4 4
 using System.Data;
5 5
 using System.Drawing;
6
+using System.IO.Ports;
6 7
 using System.Linq;
8
+using System.Runtime.InteropServices;
7 9
 using System.Text;
8 10
 using System.Threading.Tasks;
9 11
 using System.Windows.Forms;
@@ -32,6 +34,7 @@ namespace Jdas_Mbic
32 34
         private void JdasMbic_Load(object sender, EventArgs e)
33 35
         {
34 36
             ATT_TableLayoutSetting();
37
+            Serial_Initialize(ref comboBox_Port); // Uart SerialPort Find Init
35 38
         }
36 39
         
37 40
         private void ATT_TableLayoutSetting()
@@ -281,5 +284,232 @@ namespace Jdas_Mbic
281 284
                 dataGridView_TableSetting[1, TmpList[i]].Value = Convert.ToString(CurrentVal + SumVal);
282 285
             }
283 286
         }
287
+
288
+        private void button_PortOpen_Click(object sender, EventArgs e)
289
+        {
290
+
291
+        }
292
+        private void button_terminal_Click(object sender, EventArgs e)
293
+        {
294
+            Terminal tml = new Terminal();
295
+            tml.Show();
296
+        }
297
+
298
+        private void button3_Click(object sender, EventArgs e)
299
+        {
300
+
301
+        }
302
+        public void Serial_Initialize(ref ComboBox cb_port)
303
+        {
304
+
305
+            this.serialPort_JdasMbic = new System.IO.Ports.SerialPort();
306
+            this.serialPort_JdasMbic.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.sPort_DataReceived);
307
+
308
+            cb_port.BeginUpdate();
309
+            foreach (string comport in SerialPort.GetPortNames())//foreach (string comport in SerialPort_TestProgram.GetPortNames())
310
+            {
311
+                cb_port.Items.Add(comport);
312
+            }
313
+            cb_port.EndUpdate();
314
+            //SerialPort 초기 설정.
315
+            //  serialPort.Encoding = Encoding.GetEncoding("Windows-1252");
316
+            cb_port.DataSource = SerialPort.GetPortNames();
317
+            try
318
+            {
319
+                serialPort_JdasMbic.PortName =  cb_port.SelectedItem.ToString();
320
+                serialPort_JdasMbic.BaudRate = (int)115200;
321
+                serialPort_JdasMbic.DataBits = (int)8;
322
+                serialPort_JdasMbic.Parity = System.IO.Ports.Parity.None;
323
+                serialPort_JdasMbic.StopBits = StopBits.One;
324
+            }
325
+            catch { }
326
+
327
+        }
328
+        private delegate void StringSend(string Text);
329
+        private delegate void GridviewSend(ref object gridview, string Text);
330
+        private delegate void ByteSend(byte[] Text);
331
+
332
+        int offset = 0;
333
+        byte[] rxBuffer;
334
+
335
+        private void sPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
336
+        {
337
+            string startStr = "V";
338
+            string endStr = "\n";
339
+
340
+            try
341
+            {
342
+
343
+                if (offset == 0)
344
+                {
345
+                    rxBuffer = new byte[4096];
346
+                }
347
+
348
+                string rxString = "";
349
+                int intRecSize = serialPort_JdasMbic.BytesToRead;
350
+
351
+                if (intRecSize != 0)
352
+                {
353
+
354
+
355
+
356
+
357
+                    /* if (panel_GpsTest.Visible == true)
358
+                     {
359
+                         byte[] btdata = new byte[intRecSize];
360
+                         serialPort_JdasMbic.Read(btdata, 0, intRecSize);
361
+                         string data = Encoding.Default.GetString(rxBuffer);
362
+
363
+                         this.Invoke(new StringSend(Data_Recv_Str), data);
364
+                     }
365
+                     else*/
366
+                    {
367
+                        serialPort_JdasMbic.Read(rxBuffer, offset, intRecSize);
368
+                        offset += intRecSize;
369
+                        for (int iTemp = 0; iTemp < offset; iTemp++)
370
+                        {
371
+                            rxString += Convert.ToChar(rxBuffer[iTemp]);
372
+                        }
373
+                        /*
374
+                         * 
375
+                         * Example
376
+                         * if (panel_SensorTest.Visible == true)
377
+                        {
378
+                            startStr = "V";
379
+                            endStr = "\n";
380
+                        }
381
+
382
+                        else if (panel_Catm1Test.Visible == true)
383
+                        {
384
+                            startStr = "B";
385
+                            endStr = "\n";
386
+                        }
387
+                        else if (panel_GpsTest.Visible == true)
388
+                        {
389
+                            startStr = "$";
390
+                            endStr = "\n";
391
+                        }
392
+                        
393
+                         */
394
+                        if (rxString.Contains(startStr))
395
+                        {
396
+                            rxString = rxString.Substring(rxString.IndexOf(startStr));
397
+                            if (rxString.Contains(endStr))
398
+                            {
399
+                                this.Invoke(new StringSend(Data_Recv_Str), rxString);
400
+                                //program.dataReceived(rxString, "Receive");
401
+                                offset = 0;
402
+                            }
403
+                        }
404
+                        else
405
+                        {
406
+                            this.Invoke(new StringSend(Data_Recv_Str), rxString);
407
+                            offset = 0;
408
+                        }
409
+                    }
410
+
411
+                }
412
+            }
413
+            catch { }
414
+
415
+        }
416
+        int LineLimit = 500;
417
+        [DllImport("user32.dll")]
418
+        public static extern int SendMessage(IntPtr hWnd, Int32 wMsg, bool wParam, Int32 lParam);
419
+        private const int WM_SETREDRAW = 11;
420
+        public void Data_Recv_Str(string text)
421
+        {
422
+
423
+            System.Windows.Forms.RichTextBox tbReceived = null;
424
+            //tbReceived = richTextBox_Sensor;
425
+
426
+            int nLimitLines = Convert.ToInt32(LineLimit); //제한 라인 수
427
+            try
428
+            {
429
+                try
430
+                {
431
+                    SendMessage(this.Handle, WM_SETREDRAW, false, 0);
432
+                }
433
+                catch (Exception e) { MessageBox.Show(e.StackTrace); }
434
+                if (tbReceived.Lines.Length > nLimitLines)
435
+                {
436
+                    LinkedList<string> tempLines = new LinkedList<string>(tbReceived.Lines);
437
+                    while ((tempLines.Count - nLimitLines) > 0)
438
+                    {
439
+                        tempLines.RemoveFirst();
440
+                    }
441
+                    tbReceived.Lines = tempLines.ToArray();
442
+                }
443
+                try
444
+                {
445
+                    SendMessage(this.Handle, WM_SETREDRAW, true, 0);
446
+                }
447
+                catch { return; }
448
+                /* Example
449
+                if (panel_SensorTest.Visible == true)
450
+                {
451
+
452
+                    Sensor_TestFunc(text);
453
+                    tbReceived.AppendText(text);
454
+                }
455
+                else
456
+                {
457
+                    tbReceived.AppendText(text);
458
+                }
459
+
460
+                */
461
+                
462
+              tbReceived.SelectionStart = tbReceived.Text.Length;//맨 마지막 선택... 
463
+                tbReceived.ScrollToCaret();
464
+            }
465
+            catch { try { SendMessage(this.Handle, WM_SETREDRAW, true, 0); } catch { return; } }
466
+        }
467
+        public void Data_Recv_Str(byte[] text)
468
+        {
469
+            string strtext = Encoding.Default.GetString(text);
470
+
471
+            System.Windows.Forms.RichTextBox tbReceived = null;
472
+          
473
+//            tbReceived = richTextBox_Sensor;
474
+
475
+            int nLimitLines = Convert.ToInt32(LineLimit); //제한 라인 수
476
+            try
477
+            {
478
+                try
479
+                {
480
+                    SendMessage(this.Handle, WM_SETREDRAW, false, 0);
481
+                }
482
+                catch (Exception e) { MessageBox.Show(e.StackTrace); }
483
+                if (tbReceived.Lines.Length > nLimitLines)
484
+                {
485
+                    LinkedList<string> tempLines = new LinkedList<string>(tbReceived.Lines);
486
+                    while ((tempLines.Count - nLimitLines) > 0)
487
+                    {
488
+                        tempLines.RemoveFirst();
489
+                    }
490
+                    tbReceived.Lines = tempLines.ToArray();
491
+                }
492
+                try
493
+                {
494
+                    SendMessage(this.Handle, WM_SETREDRAW, true, 0);
495
+                }
496
+                catch { return; }
497
+                /* Example
498
+                if (panel_SensorTest.Visible == true)
499
+                {
500
+                    Sensor_TestFunc(strtext);
501
+                    tbReceived.AppendText(strtext);
502
+                }
503
+                else
504
+                {
505
+                    tbReceived.AppendText(strtext);
506
+                }
507
+                */
508
+                tbReceived.SelectionStart = tbReceived.Text.Length;//맨 마지막 선택... 
509
+                tbReceived.ScrollToCaret();
510
+            }
511
+            catch { try { SendMessage(this.Handle, WM_SETREDRAW, true, 0); } catch { return; } }
512
+        }
513
+
284 514
     }
285 515
 }

+ 3 - 0
Jdas_Mbic/Main.resx

@@ -1264,4 +1264,7 @@
1264 1264
   <metadata name="Column_Offset.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
1265 1265
     <value>True</value>
1266 1266
   </metadata>
1267
+  <metadata name="serialPort_JdasMbic.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
1268
+    <value>17, 17</value>
1269
+  </metadata>
1267 1270
 </root>

+ 62 - 0
Jdas_Mbic/Terminal.Designer.cs

@@ -0,0 +1,62 @@
1
+namespace Jdas_Mbic
2
+{
3
+    partial class Terminal
4
+    {
5
+        /// <summary>
6
+        /// Required designer variable.
7
+        /// </summary>
8
+        private System.ComponentModel.IContainer components = null;
9
+
10
+        /// <summary>
11
+        /// Clean up any resources being used.
12
+        /// </summary>
13
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14
+        protected override void Dispose(bool disposing)
15
+        {
16
+            if (disposing && (components != null))
17
+            {
18
+                components.Dispose();
19
+            }
20
+            base.Dispose(disposing);
21
+        }
22
+
23
+        #region Windows Form Designer generated code
24
+
25
+        /// <summary>
26
+        /// Required method for Designer support - do not modify
27
+        /// the contents of this method with the code editor.
28
+        /// </summary>
29
+        private void InitializeComponent()
30
+        {
31
+            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
32
+            this.SuspendLayout();
33
+            // 
34
+            // richTextBox1
35
+            // 
36
+            this.richTextBox1.BackColor = System.Drawing.Color.Black;
37
+            this.richTextBox1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
38
+            this.richTextBox1.ForeColor = System.Drawing.Color.Yellow;
39
+            this.richTextBox1.Location = new System.Drawing.Point(12, 12);
40
+            this.richTextBox1.Name = "richTextBox1";
41
+            this.richTextBox1.Size = new System.Drawing.Size(776, 426);
42
+            this.richTextBox1.TabIndex = 0;
43
+            this.richTextBox1.Text = "";
44
+            // 
45
+            // Terminal
46
+            // 
47
+            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
48
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49
+            this.ClientSize = new System.Drawing.Size(800, 450);
50
+            this.Controls.Add(this.richTextBox1);
51
+            this.Name = "Terminal";
52
+            this.Text = "Terminal";
53
+            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Terminal_FormClosing);
54
+            this.ResumeLayout(false);
55
+
56
+        }
57
+
58
+        #endregion
59
+
60
+        private System.Windows.Forms.RichTextBox richTextBox1;
61
+    }
62
+}

+ 25 - 0
Jdas_Mbic/Terminal.cs

@@ -0,0 +1,25 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.ComponentModel;
4
+using System.Data;
5
+using System.Drawing;
6
+using System.Linq;
7
+using System.Text;
8
+using System.Threading.Tasks;
9
+using System.Windows.Forms;
10
+
11
+namespace Jdas_Mbic
12
+{
13
+    public partial class Terminal : Form
14
+    {
15
+        public Terminal()
16
+        {
17
+            InitializeComponent();
18
+        }
19
+
20
+        private void Terminal_FormClosing(object sender, FormClosingEventArgs e)
21
+        {
22
+            this.Dispose();
23
+        }
24
+    }
25
+}

+ 120 - 0
Jdas_Mbic/Terminal.resx

@@ -0,0 +1,120 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<root>
3
+  <!-- 
4
+    Microsoft ResX Schema 
5
+    
6
+    Version 2.0
7
+    
8
+    The primary goals of this format is to allow a simple XML format 
9
+    that is mostly human readable. The generation and parsing of the 
10
+    various data types are done through the TypeConverter classes 
11
+    associated with the data types.
12
+    
13
+    Example:
14
+    
15
+    ... ado.net/XML headers & schema ...
16
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
17
+    <resheader name="version">2.0</resheader>
18
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
24
+    </data>
25
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27
+        <comment>This is a comment</comment>
28
+    </data>
29
+                
30
+    There are any number of "resheader" rows that contain simple 
31
+    name/value pairs.
32
+    
33
+    Each data row contains a name, and value. The row also contains a 
34
+    type or mimetype. Type corresponds to a .NET class that support 
35
+    text/value conversion through the TypeConverter architecture. 
36
+    Classes that don't support this are serialized and stored with the 
37
+    mimetype set.
38
+    
39
+    The mimetype is used for serialized objects, and tells the 
40
+    ResXResourceReader how to depersist the object. This is currently not 
41
+    extensible. For a given mimetype the value must be set accordingly:
42
+    
43
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
44
+    that the ResXResourceWriter will generate, however the reader can 
45
+    read any of the formats listed below.
46
+    
47
+    mimetype: application/x-microsoft.net.object.binary.base64
48
+    value   : The object must be serialized with 
49
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50
+            : and then encoded with base64 encoding.
51
+    
52
+    mimetype: application/x-microsoft.net.object.soap.base64
53
+    value   : The object must be serialized with 
54
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55
+            : and then encoded with base64 encoding.
56
+
57
+    mimetype: application/x-microsoft.net.object.bytearray.base64
58
+    value   : The object must be serialized into a byte array 
59
+            : using a System.ComponentModel.TypeConverter
60
+            : and then encoded with base64 encoding.
61
+    -->
62
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64
+    <xsd:element name="root" msdata:IsDataSet="true">
65
+      <xsd:complexType>
66
+        <xsd:choice maxOccurs="unbounded">
67
+          <xsd:element name="metadata">
68
+            <xsd:complexType>
69
+              <xsd:sequence>
70
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
71
+              </xsd:sequence>
72
+              <xsd:attribute name="name" use="required" type="xsd:string" />
73
+              <xsd:attribute name="type" type="xsd:string" />
74
+              <xsd:attribute name="mimetype" type="xsd:string" />
75
+              <xsd:attribute ref="xml:space" />
76
+            </xsd:complexType>
77
+          </xsd:element>
78
+          <xsd:element name="assembly">
79
+            <xsd:complexType>
80
+              <xsd:attribute name="alias" type="xsd:string" />
81
+              <xsd:attribute name="name" type="xsd:string" />
82
+            </xsd:complexType>
83
+          </xsd:element>
84
+          <xsd:element name="data">
85
+            <xsd:complexType>
86
+              <xsd:sequence>
87
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89
+              </xsd:sequence>
90
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93
+              <xsd:attribute ref="xml:space" />
94
+            </xsd:complexType>
95
+          </xsd:element>
96
+          <xsd:element name="resheader">
97
+            <xsd:complexType>
98
+              <xsd:sequence>
99
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100
+              </xsd:sequence>
101
+              <xsd:attribute name="name" type="xsd:string" use="required" />
102
+            </xsd:complexType>
103
+          </xsd:element>
104
+        </xsd:choice>
105
+      </xsd:complexType>
106
+    </xsd:element>
107
+  </xsd:schema>
108
+  <resheader name="resmimetype">
109
+    <value>text/microsoft-resx</value>
110
+  </resheader>
111
+  <resheader name="version">
112
+    <value>2.0</value>
113
+  </resheader>
114
+  <resheader name="reader">
115
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116
+  </resheader>
117
+  <resheader name="writer">
118
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119
+  </resheader>
120
+</root>

BIN
Jdas_Mbic/bin/Debug/Jdas_Mbic.exe


BIN
Jdas_Mbic/bin/Debug/Jdas_Mbic.pdb


BIN
Jdas_Mbic/obj/Debug/Jdas_Mbic.Terminal.resources


+ 1 - 1
Jdas_Mbic/obj/Debug/Jdas_Mbic.csproj.CoreCompileInputs.cache

@@ -1 +1 @@
1
-3f22cb9319fbd26c7f0acfa8b7f6fa23632611c4
1
+52bc1d32047500c14d078d367e1e5253e3a2481a

+ 1 - 0
Jdas_Mbic/obj/Debug/Jdas_Mbic.csproj.FileListAbsolute.txt

@@ -18,3 +18,4 @@ G:\C#\Jdas_Mbic\Jdas_Mbic\obj\Debug\Jdas_Mbic.csproj.GenerateResource.cache
18 18
 G:\C#\Jdas_Mbic\Jdas_Mbic\obj\Debug\Jdas_Mbic.csproj.CoreCompileInputs.cache
19 19
 G:\C#\Jdas_Mbic\Jdas_Mbic\obj\Debug\Jdas_Mbic.exe
20 20
 G:\C#\Jdas_Mbic\Jdas_Mbic\obj\Debug\Jdas_Mbic.pdb
21
+G:\C#\Jdas_Mbic\Jdas_Mbic\obj\Debug\Jdas_Mbic.Terminal.resources

BIN
Jdas_Mbic/obj/Debug/Jdas_Mbic.csproj.GenerateResource.cache


BIN
Jdas_Mbic/obj/Debug/Jdas_Mbic.exe


BIN
Jdas_Mbic/obj/Debug/Jdas_Mbic.pdb