Compare commits

...

5 Commits

7 changed files with 529 additions and 77 deletions

View File

@@ -29,7 +29,11 @@
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.kryptonPanel1 = new Krypton.Toolkit.KryptonPanel();
this.getDateBtn = new Krypton.Toolkit.KryptonButton();
this.getTimeBtn = new Krypton.Toolkit.KryptonButton();
this.kryptonListBox1 = new Krypton.Toolkit.KryptonListBox();
this.kryptonPictureBox1 = new Krypton.Toolkit.KryptonPictureBox();
this.sendBtn = new Krypton.Toolkit.KryptonButton();
this.kryptonStatusStrip1 = new Krypton.Toolkit.KryptonStatusStrip();
@@ -40,9 +44,6 @@
this.restartUDPClientToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.messageTxt = new Krypton.Toolkit.KryptonTextBox();
this.kryptonManager2 = new Krypton.Toolkit.KryptonManager(this.components);
this.kryptonListBox1 = new Krypton.Toolkit.KryptonListBox();
this.getTimeBtn = new Krypton.Toolkit.KryptonButton();
this.getDateBtn = new Krypton.Toolkit.KryptonButton();
((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
this.kryptonPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.kryptonPictureBox1)).BeginInit();
@@ -60,61 +61,65 @@
this.kryptonPanel1.Controls.Add(this.kryptonStatusStrip1);
this.kryptonPanel1.Controls.Add(this.menuStrip1);
this.kryptonPanel1.Controls.Add(this.messageTxt);
this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
resources.ApplyResources(this.kryptonPanel1, "kryptonPanel1");
this.kryptonPanel1.Name = "kryptonPanel1";
this.kryptonPanel1.Size = new System.Drawing.Size(644, 349);
this.kryptonPanel1.TabIndex = 0;
//
// getDateBtn
//
resources.ApplyResources(this.getDateBtn, "getDateBtn");
this.getDateBtn.Name = "getDateBtn";
this.getDateBtn.Values.DropDownArrowColor = System.Drawing.Color.Empty;
this.getDateBtn.Values.Text = resources.GetString("getDateBtn.Values.Text");
this.getDateBtn.Click += new System.EventHandler(this.getDateBtn_Click);
//
// getTimeBtn
//
resources.ApplyResources(this.getTimeBtn, "getTimeBtn");
this.getTimeBtn.Name = "getTimeBtn";
this.getTimeBtn.Values.DropDownArrowColor = System.Drawing.Color.Empty;
this.getTimeBtn.Values.Text = resources.GetString("getTimeBtn.Values.Text");
this.getTimeBtn.Click += new System.EventHandler(this.getTimeBtn_Click);
//
// kryptonListBox1
//
resources.ApplyResources(this.kryptonListBox1, "kryptonListBox1");
this.kryptonListBox1.Name = "kryptonListBox1";
//
// kryptonPictureBox1
//
this.kryptonPictureBox1.Image = global::SamaPager_Client.Properties.Resources.shalom;
this.kryptonPictureBox1.Location = new System.Drawing.Point(349, 134);
resources.ApplyResources(this.kryptonPictureBox1, "kryptonPictureBox1");
this.kryptonPictureBox1.Name = "kryptonPictureBox1";
this.kryptonPictureBox1.Size = new System.Drawing.Size(278, 181);
this.kryptonPictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.kryptonPictureBox1.TabIndex = 3;
this.kryptonPictureBox1.TabStop = false;
//
// sendBtn
//
this.sendBtn.Location = new System.Drawing.Point(250, 248);
resources.ApplyResources(this.sendBtn, "sendBtn");
this.sendBtn.Name = "sendBtn";
this.sendBtn.Size = new System.Drawing.Size(80, 67);
this.sendBtn.TabIndex = 2;
this.sendBtn.Values.DropDownArrowColor = System.Drawing.Color.Empty;
this.sendBtn.Values.Text = "SEND";
this.sendBtn.Values.Text = resources.GetString("sendBtn.Values.Text");
this.sendBtn.Click += new System.EventHandler(this.sendBtn_Click);
//
// kryptonStatusStrip1
//
this.kryptonStatusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
resources.ApplyResources(this.kryptonStatusStrip1, "kryptonStatusStrip1");
this.kryptonStatusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.statusTxt});
this.kryptonStatusStrip1.Location = new System.Drawing.Point(0, 327);
this.kryptonStatusStrip1.Name = "kryptonStatusStrip1";
this.kryptonStatusStrip1.ProgressBars = null;
this.kryptonStatusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
this.kryptonStatusStrip1.Size = new System.Drawing.Size(644, 22);
this.kryptonStatusStrip1.TabIndex = 1;
this.kryptonStatusStrip1.Text = "kryptonStatusStrip1";
//
// statusTxt
//
this.statusTxt.Name = "statusTxt";
this.statusTxt.Size = new System.Drawing.Size(68, 17);
this.statusTxt.Text = "STATUS: Off";
resources.ApplyResources(this.statusTxt, "statusTxt");
//
// menuStrip1
//
this.menuStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
resources.ApplyResources(this.menuStrip1, "menuStrip1");
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(644, 24);
this.menuStrip1.TabIndex = 4;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
@@ -122,72 +127,38 @@
this.changeDestinationAddressToolStripMenuItem,
this.restartUDPClientToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(64, 20);
this.fileToolStripMenuItem.Text = "Network";
resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
//
// changeDestinationAddressToolStripMenuItem
//
this.changeDestinationAddressToolStripMenuItem.Name = "changeDestinationAddressToolStripMenuItem";
this.changeDestinationAddressToolStripMenuItem.Size = new System.Drawing.Size(220, 22);
this.changeDestinationAddressToolStripMenuItem.Text = "Change destination address";
resources.ApplyResources(this.changeDestinationAddressToolStripMenuItem, "changeDestinationAddressToolStripMenuItem");
this.changeDestinationAddressToolStripMenuItem.Click += new System.EventHandler(this.changeDestinationAddressToolStripMenuItem_Click);
//
// restartUDPClientToolStripMenuItem
//
this.restartUDPClientToolStripMenuItem.Name = "restartUDPClientToolStripMenuItem";
this.restartUDPClientToolStripMenuItem.Size = new System.Drawing.Size(220, 22);
this.restartUDPClientToolStripMenuItem.Text = "Restart UDP Client";
resources.ApplyResources(this.restartUDPClientToolStripMenuItem, "restartUDPClientToolStripMenuItem");
this.restartUDPClientToolStripMenuItem.Click += new System.EventHandler(this.restartUDPClientToolStripMenuItem_Click);
//
// messageTxt
//
this.messageTxt.Location = new System.Drawing.Point(12, 248);
this.messageTxt.Multiline = true;
resources.ApplyResources(this.messageTxt, "messageTxt");
this.messageTxt.Name = "messageTxt";
this.messageTxt.Size = new System.Drawing.Size(232, 67);
this.messageTxt.TabIndex = 0;
//
// kryptonManager2
//
this.kryptonManager2.GlobalPaletteMode = Krypton.Toolkit.PaletteMode.Office2010Silver;
//
// kryptonListBox1
//
this.kryptonListBox1.Location = new System.Drawing.Point(12, 27);
this.kryptonListBox1.Name = "kryptonListBox1";
this.kryptonListBox1.Size = new System.Drawing.Size(318, 215);
this.kryptonListBox1.TabIndex = 5;
//
// getTimeBtn
//
this.getTimeBtn.Location = new System.Drawing.Point(349, 27);
this.getTimeBtn.Name = "getTimeBtn";
this.getTimeBtn.Size = new System.Drawing.Size(278, 45);
this.getTimeBtn.TabIndex = 6;
this.getTimeBtn.Values.DropDownArrowColor = System.Drawing.Color.Empty;
this.getTimeBtn.Values.Text = "Get Time";
//
// getDateBtn
//
this.getDateBtn.Location = new System.Drawing.Point(349, 78);
this.getDateBtn.Name = "getDateBtn";
this.getDateBtn.Size = new System.Drawing.Size(278, 43);
this.getDateBtn.TabIndex = 7;
this.getDateBtn.Values.DropDownArrowColor = System.Drawing.Color.Empty;
this.getDateBtn.Values.Text = "Get Date";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(644, 349);
this.Controls.Add(this.kryptonPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "SamaPager Client";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
this.kryptonPanel1.ResumeLayout(false);

View File

@@ -59,5 +59,15 @@ namespace SamaPager_Client
}
}
private void getTimeBtn_Click(object sender, EventArgs e)
{
pageClient.SendMessage("!time");
}
private void getDateBtn_Click(object sender, EventArgs e)
{
pageClient.SendMessage("!date");
}
}
}

View File

@@ -0,0 +1,167 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="getDateBtn.Values.Text" xml:space="preserve">
<value>Ottieni Data</value>
</data>
<data name="getTimeBtn.Values.Text" xml:space="preserve">
<value>Ottieni Ora</value>
</data>
<data name="sendBtn.Values.Text" xml:space="preserve">
<value>INVIA</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="kryptonStatusStrip1.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 328</value>
</data>
<data name="kryptonStatusStrip1.Size" type="System.Drawing.Size, System.Drawing">
<value>650, 22</value>
</data>
<data name="menuStrip1.Size" type="System.Drawing.Size, System.Drawing">
<value>650, 24</value>
</data>
<data name="kryptonPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>650, 350</value>
</data>
<data name="fileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 20</value>
</data>
<data name="fileToolStripMenuItem.Text" xml:space="preserve">
<value>Rete</value>
</data>
<data name="changeDestinationAddressToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>210, 22</value>
</data>
<data name="changeDestinationAddressToolStripMenuItem.Text" xml:space="preserve">
<value>Cambia IP di destinazione</value>
</data>
<data name="restartUDPClientToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>210, 22</value>
</data>
<data name="restartUDPClientToolStripMenuItem.Text" xml:space="preserve">
<value>Riavvia il socket UDP</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>650, 350</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>Inherit</value>
</data>
</root>

View File

@@ -117,13 +117,313 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="getDateBtn.Location" type="System.Drawing.Point, System.Drawing">
<value>349, 78</value>
</data>
<data name="getDateBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 43</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="getDateBtn.TabIndex" type="System.Int32, mscorlib">
<value>7</value>
</data>
<data name="getDateBtn.Values.Text" xml:space="preserve">
<value>Get Date</value>
</data>
<data name="&gt;&gt;getDateBtn.Name" xml:space="preserve">
<value>getDateBtn</value>
</data>
<data name="&gt;&gt;getDateBtn.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonButton, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;getDateBtn.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;getDateBtn.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="getTimeBtn.Location" type="System.Drawing.Point, System.Drawing">
<value>349, 27</value>
</data>
<data name="getTimeBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 45</value>
</data>
<data name="getTimeBtn.TabIndex" type="System.Int32, mscorlib">
<value>6</value>
</data>
<data name="getTimeBtn.Values.Text" xml:space="preserve">
<value>Get Time</value>
</data>
<data name="&gt;&gt;getTimeBtn.Name" xml:space="preserve">
<value>getTimeBtn</value>
</data>
<data name="&gt;&gt;getTimeBtn.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonButton, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;getTimeBtn.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;getTimeBtn.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="kryptonListBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>12, 27</value>
</data>
<data name="kryptonListBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>318, 215</value>
</data>
<data name="kryptonListBox1.TabIndex" type="System.Int32, mscorlib">
<value>5</value>
</data>
<data name="&gt;&gt;kryptonListBox1.Name" xml:space="preserve">
<value>kryptonListBox1</value>
</data>
<data name="&gt;&gt;kryptonListBox1.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonListBox, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;kryptonListBox1.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;kryptonListBox1.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="kryptonPictureBox1.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="kryptonPictureBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>349, 134</value>
</data>
<data name="kryptonPictureBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>278, 181</value>
</data>
<data name="kryptonPictureBox1.SizeMode" type="System.Windows.Forms.PictureBoxSizeMode, System.Windows.Forms">
<value>AutoSize</value>
</data>
<data name="kryptonPictureBox1.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="&gt;&gt;kryptonPictureBox1.Name" xml:space="preserve">
<value>kryptonPictureBox1</value>
</data>
<data name="&gt;&gt;kryptonPictureBox1.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonPictureBox, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;kryptonPictureBox1.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;kryptonPictureBox1.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="sendBtn.Location" type="System.Drawing.Point, System.Drawing">
<value>250, 248</value>
</data>
<data name="sendBtn.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 67</value>
</data>
<data name="sendBtn.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="sendBtn.Values.Text" xml:space="preserve">
<value>SEND</value>
</data>
<data name="&gt;&gt;sendBtn.Name" xml:space="preserve">
<value>sendBtn</value>
</data>
<data name="&gt;&gt;sendBtn.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonButton, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;sendBtn.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;sendBtn.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<metadata name="kryptonStatusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>165, 17</value>
</metadata>
<data name="kryptonStatusStrip1.Font" type="System.Drawing.Font, System.Drawing">
<value>Segoe UI, 9pt</value>
</data>
<data name="statusTxt.Size" type="System.Drawing.Size, System.Drawing">
<value>68, 17</value>
</data>
<data name="statusTxt.Text" xml:space="preserve">
<value>STATUS: Off</value>
</data>
<data name="kryptonStatusStrip1.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 326</value>
</data>
<data name="kryptonStatusStrip1.Size" type="System.Drawing.Size, System.Drawing">
<value>652, 22</value>
</data>
<data name="kryptonStatusStrip1.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="kryptonStatusStrip1.Text" xml:space="preserve">
<value>kryptonStatusStrip1</value>
</data>
<data name="&gt;&gt;kryptonStatusStrip1.Name" xml:space="preserve">
<value>kryptonStatusStrip1</value>
</data>
<data name="&gt;&gt;kryptonStatusStrip1.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonStatusStrip, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;kryptonStatusStrip1.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;kryptonStatusStrip1.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>322, 17</value>
</metadata>
<data name="menuStrip1.Font" type="System.Drawing.Font, System.Drawing">
<value>Segoe UI, 9pt</value>
</data>
<data name="changeDestinationAddressToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>220, 22</value>
</data>
<data name="changeDestinationAddressToolStripMenuItem.Text" xml:space="preserve">
<value>Change destination address</value>
</data>
<data name="restartUDPClientToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>220, 22</value>
</data>
<data name="restartUDPClientToolStripMenuItem.Text" xml:space="preserve">
<value>Restart UDP Client</value>
</data>
<data name="fileToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>64, 20</value>
</data>
<data name="fileToolStripMenuItem.Text" xml:space="preserve">
<value>Network</value>
</data>
<data name="menuStrip1.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value>
</data>
<data name="menuStrip1.Size" type="System.Drawing.Size, System.Drawing">
<value>652, 24</value>
</data>
<data name="menuStrip1.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="menuStrip1.Text" xml:space="preserve">
<value>menuStrip1</value>
</data>
<data name="&gt;&gt;menuStrip1.Name" xml:space="preserve">
<value>menuStrip1</value>
</data>
<data name="&gt;&gt;menuStrip1.Type" xml:space="preserve">
<value>System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;menuStrip1.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;menuStrip1.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="messageTxt.Location" type="System.Drawing.Point, System.Drawing">
<value>12, 248</value>
</data>
<data name="messageTxt.Multiline" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="messageTxt.Size" type="System.Drawing.Size, System.Drawing">
<value>232, 67</value>
</data>
<data name="messageTxt.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;messageTxt.Name" xml:space="preserve">
<value>messageTxt</value>
</data>
<data name="&gt;&gt;messageTxt.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonTextBox, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;messageTxt.Parent" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;messageTxt.ZOrder" xml:space="preserve">
<value>7</value>
</data>
<data name="kryptonPanel1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value>
</data>
<data name="kryptonPanel1.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value>
</data>
<data name="kryptonPanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>652, 348</value>
</data>
<data name="kryptonPanel1.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;kryptonPanel1.Name" xml:space="preserve">
<value>kryptonPanel1</value>
</data>
<data name="&gt;&gt;kryptonPanel1.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonPanel, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;kryptonPanel1.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;kryptonPanel1.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<metadata name="kryptonManager2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>652, 348</value>
</data>
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>SamaPager Client</value>
</data>
<data name="&gt;&gt;statusTxt.Name" xml:space="preserve">
<value>statusTxt</value>
</data>
<data name="&gt;&gt;statusTxt.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;fileToolStripMenuItem.Name" xml:space="preserve">
<value>fileToolStripMenuItem</value>
</data>
<data name="&gt;&gt;fileToolStripMenuItem.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;changeDestinationAddressToolStripMenuItem.Name" xml:space="preserve">
<value>changeDestinationAddressToolStripMenuItem</value>
</data>
<data name="&gt;&gt;changeDestinationAddressToolStripMenuItem.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;restartUDPClientToolStripMenuItem.Name" xml:space="preserve">
<value>restartUDPClientToolStripMenuItem</value>
</data>
<data name="&gt;&gt;restartUDPClientToolStripMenuItem.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;kryptonManager2.Name" xml:space="preserve">
<value>kryptonManager2</value>
</data>
<data name="&gt;&gt;kryptonManager2.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonManager, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>Form1</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>Krypton.Toolkit.KryptonForm, Krypton.Toolkit, Version=95.25.8.235, Culture=neutral, PublicKeyToken=a87e673e9ecb6e8e</value>
</data>
</root>

View File

@@ -59,6 +59,9 @@
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.it-IT.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>

View File

@@ -72,11 +72,12 @@
this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
this.kryptonPanel1.Name = "kryptonPanel1";
this.kryptonPanel1.Size = new System.Drawing.Size(423, 377);
this.kryptonPanel1.Size = new System.Drawing.Size(423, 386);
this.kryptonPanel1.TabIndex = 0;
//
// logList
//
this.logList.HorizontalExtent = 4000;
this.logList.HorizontalScrollbar = true;
this.logList.Location = new System.Drawing.Point(12, 27);
this.logList.Name = "logList";
@@ -88,7 +89,7 @@
this.kryptonStatusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
this.kryptonStatusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.statusLabel});
this.kryptonStatusStrip1.Location = new System.Drawing.Point(0, 355);
this.kryptonStatusStrip1.Location = new System.Drawing.Point(0, 364);
this.kryptonStatusStrip1.Name = "kryptonStatusStrip1";
this.kryptonStatusStrip1.ProgressBars = null;
this.kryptonStatusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
@@ -140,7 +141,7 @@
// infoToolStripMenuItem2
//
this.infoToolStripMenuItem2.Name = "infoToolStripMenuItem2";
this.infoToolStripMenuItem2.Size = new System.Drawing.Size(107, 22);
this.infoToolStripMenuItem2.Size = new System.Drawing.Size(180, 22);
this.infoToolStripMenuItem2.Text = "About";
this.infoToolStripMenuItem2.Click += new System.EventHandler(this.infoToolStripMenuItem2_Click);
//
@@ -161,7 +162,7 @@
//
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "notifyIcon1";
this.notifyIcon1.Text = "SamaPager Server";
this.notifyIcon1.Visible = true;
//
// contextMenuStrip1
@@ -191,7 +192,7 @@
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(423, 377);
this.ClientSize = new System.Drawing.Size(423, 386);
this.Controls.Add(this.kryptonPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));

View File

@@ -5,12 +5,12 @@ using System.Runtime.InteropServices;
// Le informazioni generali relative a un assembly sono controllate dal seguente
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
// associate a un assembly.
[assembly: AssemblyTitle("SamaPager_Server")]
[assembly: AssemblyTitle("SamaPager Server")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SamaPager_Server")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyCompany("AndreStork")]
[assembly: AssemblyProduct("SamaPager Server")]
[assembly: AssemblyCopyright("©2025 NiggaChain AI Layer 2 Blockchain")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Numero di build
// Revisione
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.1.0.0")]