AsterixDisplayAnalyser.FrmDetailedView.DisplayCAT02I030Data C# (CSharp) Метод

DisplayCAT02I030Data() приватный Метод

private DisplayCAT02I030Data ( ) : void
Результат void
        private void DisplayCAT02I030Data()
        {
            if (MainASTERIXDataStorage.CAT02Message.Count > 0)
            {
                this.listBoxMainDataBox.Items.Add("Detailed view of: " + MainASTERIXDataStorage.CAT01Message[0].CAT01DataItems[CAT02.ItemIDToIndex("010")].Description);
                ASTERIX.SIC_SAC_Time SIC_SAC_TIME = (ASTERIX.SIC_SAC_Time)MainASTERIXDataStorage.CAT01Message[0].CAT01DataItems[CAT02.ItemIDToIndex("010")].value;
                this.listBoxMainDataBox.Items.Add("SIC/SAC: " + SIC_SAC_TIME.SIC.ToString() + "/" + SIC_SAC_TIME.SAC.ToString());
                this.listBoxMainDataBox.Items.Add("    ");

                // Here determine the flag indicating what data is to be shown
                foreach (MainASTERIXDataStorage.CAT02Data Msg in MainASTERIXDataStorage.CAT02Message)
                {
                    if (Msg.CAT02DataItems[CAT02.ItemIDToIndex("010")].value != null)
                    {

                        SIC_SAC_TIME = (ASTERIX.SIC_SAC_Time)Msg.CAT02DataItems[CAT02.ItemIDToIndex("010")].value;

                        // Display time
                        string Time = SIC_SAC_TIME.TimeofReception.Hour.ToString().PadLeft(2, '0') + ":" + SIC_SAC_TIME.TimeofReception.Minute.ToString().PadLeft(2, '0') + ":" +
                            SIC_SAC_TIME.TimeofReception.Second.ToString().PadLeft(2, '0') + ":" + SIC_SAC_TIME.TimeofReception.Millisecond.ToString().PadLeft(3, '0');
                        this.listBoxMainDataBox.Items.Add("Rcvd Time: " + Time);

                        CAT02I030Types.CAT02I030_Time_Of_The_Day_User_Type MyData = (CAT02I030Types.CAT02I030_Time_Of_The_Day_User_Type)Msg.CAT02DataItems[CAT02.ItemIDToIndex("030")].value;

                        this.listBoxMainDataBox.Items.Add("\t" + "Time of Day: " + MyData.TimeOfDay.ToString());
                        this.listBoxMainDataBox.Items.Add("    ");
                    }
                }
            }
            else
            {
                this.listBoxMainDataBox.Items.Add("No data of this CAT/Item was received !!!");
            }
        }