public BeepsDataGrid()
        {
            InitializeComponent();

            Beeps = new BeepCollection();

            ItemsSource = Beeps;
        }
예제 #2
0
        internal BeepCollection Clone()
        {
            var bc = new BeepCollection();

            foreach (Beep b in this)
            {
                bc.Add(b);
            }
            return(bc);
        }