public void SetupControl(IList<LogPacket> packetLog, bool readOnly, PacketLogControl parentLog) { _packetLog = packetLog; packetLogControl.ParentLog = parentLog; packetLogControl.ReadOnly = readOnly; }
public void Setup(IList<LogPacket> packetLog, bool readOnly, PacketLogControl parentLog) { findDataFrameControl.SetupControl(packetLog, readOnly, parentLog); }
private void OpenNewPacketLogWindow(LogPacketCollection packets) { PacketLogControl control = new PacketLogControl(); control.SetPackets(packets); string name = LogName != null ? LogName + " Packet Log" : "Packet Log"; components.Add(DocumentControl.ShowControl(name, control)); }
public void SetupControl(IList <LogPacket> packetLog, bool readOnly, PacketLogControl parentLog) { _packetLog = packetLog; packetLogControl.ParentLog = parentLog; packetLogControl.ReadOnly = readOnly; }