Beispiel #1
0
        public void UpdateSourceVisible(uint aIndex, bool aVisible)
        {
            TestSource source = iSourceList[(int)aIndex];
            TestSource update = new TestSource(source.Name, source.Type, aVisible);

            iSourceList[(int)aIndex] = update;
            UpdateSource(aIndex);
        }
Beispiel #2
0
        public void UpdateSourceName(uint aIndex, string aName)
        {
            TestSource source = iSourceList[(int)aIndex];
            TestSource update = new TestSource(aName, source.Type, source.Visible);

            iSourceList[(int)aIndex] = update;
            UpdateSource(aIndex);
        }