Updates to DropDownPanel, Baseline, & Controls

This commit is contained in:
2026-08-05 15:16:53 -04:00
parent 6f0fcdded2
commit 6d7d127b63
14 changed files with 356 additions and 453 deletions
+4 -15
View File
@@ -3,11 +3,8 @@
* Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
*********************************************************************************************/
using System;
using System.Collections.Generic;
using System.IO.Pipes;
using System.Linq;
using System.Text;
//using System.Threading.Tasks;
namespace Volian.Pipe.Library
{
@@ -15,18 +12,12 @@ namespace Volian.Pipe.Library
public delegate void DelegateMessage(string Reply);
public class PipeServer
{
private string _Name;
public string Name
public string Name { get; set; }
public PipeServer(string name)
{
get { return _Name; }
set { _Name = value; }
}
public PipeServer(string name)
{
_Name = name;
Name = name;
}
public event DelegateMessage PipeMessage;
string _pipeName;
public void Listen()
{
try
@@ -66,9 +57,7 @@ namespace Volian.Pipe.Library
// Kill original sever and create new wait server
pipeServer.Close();
pipeServer = null;
//pipeServer = new NamedPipeServerStream(_pipeName, PipeDirection.In, 1, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);
//// Recursively wait for the connection again and again....
//pipeServer.BeginWaitForConnection(new AsyncCallback(WaitForConnectionCallBack), pipeServer);
// Recursively wait for the connection again and again....
Listen();
}
catch