private void DrawPatients()
        {
            int row = 0;

            foreach (ItemPatient patient in patients)
            {
                if (row > 1)
                {
                    GridMultiplePatientsInner.RowDefinitions.Add(new RowDefinition());
                }

                Grid grid = new Grid {
                    HorizontalAlignment = HorizontalAlignment.Stretch
                };

                grid.RowDefinitions.Add(new RowDefinition());
                grid.RowDefinitions.Add(new RowDefinition());

                ColumnDefinition col0 = new ColumnDefinition {
                    Width = new GridLength(90, GridUnitType.Star)
                };
                grid.ColumnDefinitions.Add(col0);

                ColumnDefinition col1 = new ColumnDefinition {
                    Width = new GridLength(10, GridUnitType.Star)
                };
                grid.ColumnDefinitions.Add(col1);

                string textTop    = patient.Name;
                string textBottom = "дата рождения: " + patient.Birthday.ToLongDateString();

                TextBlock textBlockTop = ControlsFactory.CreateTextBlock(textTop);
                textBlockTop.Foreground = BindingValues.Instance.BrushTextForeground;
                textBlockTop.Margin     = new Thickness(20, 0, 0, 0);

                TextBlock textBlockBottom = ControlsFactory.CreateTextBlock(textBottom);
                textBlockBottom.Foreground = BindingValues.Instance.BrushTextDisabledForeground;
                textBlockBottom.Margin     = new Thickness(20, 0, 0, 0);
                Grid.SetRow(textBlockBottom, 1);

                Image image = ControlsFactory.CreateImage(
                    ControlsFactory.ImageType.NotificationOk,
                    horizontalAlignment: HorizontalAlignment.Right,
                    margin: new Thickness(20));

                Grid.SetColumn(image, 1);
                Grid.SetRowSpan(image, 2);
                image.Visibility = Visibility.Hidden;

                grid.Children.Add(textBlockTop);
                grid.Children.Add(textBlockBottom);
                grid.Children.Add(image);

                Button button = new Button {
                    Tag     = patient,
                    Style   = BindingValues.Instance.StyleRoundCornerStretch,
                    Content = grid,
                    Margin  = new Thickness(20)
                };

                button.Effect = ControlsFactory.CreateDropShadowEffect();
                button.Click += ButtonPatient_Click;

                Grid.SetRow(button, row);
                GridMultiplePatientsInner.Children.Add(button);

                button.HorizontalContentAlignment = HorizontalAlignment.Stretch;
                patient.CheckStateImage           = image;

                row++;
            }
        }