void ReleaseDesignerOutlets()
        {
            if (AttachedSensorsTable != null)
            {
                AttachedSensorsTable.Dispose();
                AttachedSensorsTable = null;
            }

            if (AvailableLabel != null)
            {
                AvailableLabel.Dispose();
                AvailableLabel = null;
            }

            if (AvailableSensorsTable != null)
            {
                AvailableSensorsTable.Dispose();
                AvailableSensorsTable = null;
            }
        }
Exemplo n.º 2
0
 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 private void UpdateViewValues()
 {
     AttachedSensorsTable.ReloadData();
     AvailableSensorsTable.ReloadData();
 }