Свойства привязки из CustomControl к странице в WPF - PullRequest
0 голосов
/ 30 января 2020

Я хочу привязать свойства из CustomControl к моей странице, затем вернуться к CustomControl и рассчитать количество страниц и отобразить их в списке. Мой код выглядит так.

CustomControl

public partial class CustomControl : UserControl

public CustomControl()
{
    InitializeComponent()
}
public int PageSelected
    {
        get
        {
            return (int)GetValue(PageSelectedProperty);
        }
        set
        {
            SetValue(PageSelectedProperty, value);
        }
    }

    public static readonly DependencyProperty PageSelectedProperty = DependencyProperty.Register("PageSelected", typeof(int), typeof(CustomControl), new PropertyMetadata(null));


 public int RecordsPerPage
        {
            get
            {
                return (int)GetValue(RecordsPerPageProperty);
            }
            set
            {
                SetValue(RecordsPerPageProperty, value);
            }
        }
        public static readonly DependencyProperty RecordsPerPageProperty = DependencyProperty.Register("RecordsPerPage", typeof(int), typeof(CustomControl), new PropertyMetadata(null));

 public IList<int> RecordsPerPageList
        {
            get
            {
                return (IList<int>)GetValue(RecordsPerPageListProperty);
            }
            set
            {
                SetValue(RecordsPerPageListProperty, value);
            }
        }
        public static readonly DependencyProperty RecordsPerPageListProperty = DependencyProperty.Register("RecordsPerPageList", typeof(List<int>), typeof(CustomControl), new PropertyMetadata(null));

public int RecordsCount
        {
            get
            {
                return (int)GetValue(RecordsCountProperty);
            }
            set
            {

                SetValue(RecordsCountProperty, value);
                CreatePagesList();
            }
        }
        public static readonly DependencyProperty RecordsCountProperty = DependencyProperty.Register("RecordsCount", typeof(int), typeof(CustomControl), new PropertyMetadata(null));

 public IList<int> PagesList
        {
            get
            {
                return (IList<int>)GetValue(PagesListProperty);
            }
            set
            {
                SetValue(PagesListProperty, value);
            }
        }
        public static readonly DependencyProperty PagesListProperty = DependencyProperty.Register("PagesList", typeof(List<int>), typeof(CustomControl), new PropertyMetadata(null));

  public int PagesCount
        {
            get
            {
                return (int)GetValue(PagesCountProperty);
            }
            set
            {
                SetValue(PagesCountProperty, value);
            }
        }
        public static readonly DependencyProperty PagesCountProperty = DependencyProperty.Register("PagesCount", typeof(int), typeof(CustomControl), new PropertyMetadata(null));

Пользовательский элемент управления xaml

<UserControl x:Class="Mtrx.CustomControls.CustomControl"
             mc:Ignorable="d" 
             d:DesignHeight="90" Width="200">
    <Grid >
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="100"/>
            <ColumnDefinition Width="100"/>


        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="90" />

        </Grid.RowDefinitions>


        <ComboBox Width="40" Height="20" Grid.Column="1"  Margin="0,5,0,5" 
                  ItemsSource="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=PagesList}" 
                  SelectedItem="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=PageSelected, UpdateSourceTrigger=PropertyChanged,  Mode=TwoWay}" 
                  HorizontalContentAlignment="Center"/>


        <ComboBox Width="40" Height="20" Grid.Column="9" Margin="0,5,0,5" 
                  ItemsSource="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=RecordsPerPageList, UpdateSourceTrigger=PropertyChanged,  Mode=TwoWay}" 
                  SelectedItem="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=RecordsPerPage, UpdateSourceTrigger=PropertyChanged,  Mode=TwoWay}" 
                  HorizontalContentAlignment="Center"/>


    </Grid>

</UserControl>

Страница xaml.cs

public class PageVievModel:AbstractPage

   public int RowsCount
        {
            get
            {
                return _rowsCount;
            }
            set
            {
                if (value != _rowsCount)
                {
                    _rowsCount = value;
                    RaisePropertyChanged("RowsCount");
                }
            }
        }
        private int _rowsCount; //we get it from other place
   public int DGRecordsMax
        {
            get
            {
                return _dgRecordsMax;
            }
            set
            {
                if (value != _dgRecordsMax)
                {
                    _dgRecordsMax = value;
                    if (value > 0)
                    {
                        DataGridRecordsMaxCount = value.ToString();
                        Settings.Default.Save();
                    }

                    RaisePropertyChanged("DGRecordsMax");
                }
            }
        }
        private int _dgRecordsMax;

        public IList<int> DGRecordsMaxList
        {
            get
            {
                return _dGRecordsMaxList;
            }
            set
            {
                if (_dGRecordsMaxList != value)
                {
                    _dGRecordsMaxList = value;
                    RaisePropertyChanged("DGRecordsMaxList");
                }
            }
        }
        private IList<int> _dGRecordsMaxList = new List<int>();

        public IList<int> PagesList
        {
            get
            {
                return _pagesList;
            }
            set
            {
                if (_pagesList != value)
                {
                    _pagesList = value;
                    RaisePropertyChanged("PagesList");
                }
            }
        }
        private IList<int> _pagesList = new List<int>();

        public int PagesCount
        {
            get
            {
                return _pagesCount;
            }
            set
            {
                if (value != _pagesCount)
                {
                    _pagesCount = value;
                    RaisePropertyChanged("PagesCount");
                }
            }
        }
        private int _pagesCount;

  public IList<int> CurrentPageList
        {
            get
            {
                return _currentPageList;
            }
            set
            {
                if (_currentPageList != value)
                {
                    _currentPageList = value;
                    RaisePropertyChanged("CurrentPageList");
                }
            }
        }
        private IList<int> _currentPageList;

Страница xaml

<UserControl x:Class="SomeClass"
             mc:Ignorable="d" 
             d:DesignHeight="400" d:DesignWidth="800"
             IsEnabled="{Binding AllowInput, Converter={StaticResource AnyToBooleanConverter}}">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>


        <DockPanel>

            <SomeClass:CustomControl Width="280" Height="190" 

                RecordsCount="{Binding RowsCount, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" 
                RecordsPerPage="{Binding DGRecordsMax, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay }"
                RecordsPerPageList="{Binding DGRecordsMaxList, Mode=TwoWay}"  
                PagesCount="{Binding PagesCount, Mode=TwoWay}"
                PageSelected="{Binding CurrentPage, Mode=TwoWay}"
                PagesList="{Binding PagesList, Mode=TwoWay}"
                RecordsFrom="{Binding RecordsFrom, Mode=TwoWay}"
                RecordsTo="{Binding RecordsTo, Mode=TwoWay}"

                DockPanel.Dock="Right" 
                VerticalAlignment="Bottom"/>

            </WrapPanel.Resources>

        </WrapPanel>
    </Grid>
</UserControl>

Когда я пытаюсь запустить мою программу, появляются пустые списки, раньше, когда я просто сохранял больше свойств в Page, он работал нормально.

Буду признателен за помощь. Мне трудно понять, как сделать эти двухсторонние привязываемые свойства.

1 Ответ

0 голосов
/ 11 февраля 2020

Я попытался сделать пример, используя ваш код.

Для меня это сработало, если я изменил и IList, и List на ObservableCollection, например,

using System.Collections.ObjectModel;
....

public ObservableCollection<int> PagesList
{
  get
  {
    return (ObservableCollection<int>)GetValue ( PagesListProperty );
  }
  set
  {
    SetValue ( PagesListProperty, value );
  }
}
public static readonly DependencyProperty PagesListProperty = DependencyProperty.Register("PagesList", typeof(ObservableCollection<int>), typeof(CustomControl), new PropertyMetadata(null));

Обратите внимание, что я изменил как определение свойства, так и определение DependencyProperty.

Ваш код немного запутанный, например, у вас есть тег DockPanel, который закрывается с помощью / WrapPanel, который, очевидно, не будет компилироваться.

<DockPanel>
</WrapPanel>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...