Example #1
0
        //Ctor
        public StatusObserver(ListBox lb, Status st)
        {
            //Init attr
            statusText = "";
            statusTimestamp = DateTime.Now;

            //Bind form control to local var
            this.lb = lb;

            //Add itself to the obs list
            st.AddObserver(this);
        }