Exemplo n.º 1
0
        private static void OnItemsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            RadLoopingList list = d as RadLoopingList;

            list.ResetItemsPanel();
            list.UpdateLogicalCount(true);
        }
Exemplo n.º 2
0
        private static void OnItemSpacingChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            RadLoopingList list = d as RadLoopingList;

            if (list.itemsPanel != null)
            {
                list.ResetItemsPanel();
            }
        }