프로그래밍 방식으로 그리드 행 및 열 위치를 설정하는 방법


91

Stackpanel 안에 두 개의 그리드가 있습니다. 첫 번째 그리드의 이름은 GridX입니다. 처음에는 그리드 내부에 Textboxes (RowDefs / ColumnDefs)의 2D 배열이 있습니다. XAML의 TextBox 정의는 다음과 같습니다.

<TextBox x:Name="A1" Grid.Row="4" Grid.Column="5" TextAlignment="Center" />

GridX의 일부와 동일한 위치에 프로그래밍 방식 으로 TextBlock 을 추가하고 싶습니다.

효과는 이러 야

<TextBlock Grid.Row="4" Grid.Column="5"
HorizontalAlignment="Left" VerticalAlignment="Top" Text="10" FontSize="8"/>

이것을 추가하는 방법. 나는 이것을 시도했다 :

TextBlock tblock = new TextBlock();
GridX.SetColumn(tblock, cIndex);
GridX.SetRow(tblock, rIndex);

그러나 실패했습니다.

다시 시도했습니다.

int rIndex = Grid.GetRow(txtBox);
int cIndex = Grid.GetColumn(txtBox);                               

TextBlock tblock = new TextBlock();
tblock.VerticalAlignment = VerticalAlignment.Top;
tblock.HorizontalAlignment = HorizontalAlignment.Left;
tblock.FontSize = 8;
tblock.Text = rc[i, j - 1];

Grid.SetColumn(tblock, cIndex);
Grid.SetRow(tblock, rIndex);

txtBox.MaxLength = 1;    

이제 문제는 TextBlock이 보이지 않는다는 것입니다. TextBox가 숨 깁니다. 도와 주셔서 감사합니다.


코드가 업데이트되었습니다. 이제 문제는 텍스트 블록의 가시성입니다
Vinod

답변:


160

연결된 속성의 경우 값을 할당하려는 개체에서 SetValue를 호출 할 수 있습니다.

tblock.SetValue(Grid.RowProperty, 4);

또는 소유자 유형 (이 경우 SetRow)의 속성에 대해 정적 Set 메서드 (시도한 것과 같은 인스턴스 메서드가 아님)를 호출합니다.

Grid.SetRow(tblock, 4);

SetValue를하지 않았다 동안 SetRow 일했다 : 그것은 (내 경우에는 영)과 같은 행을 떠난다
안톤 Tropashko

1
TextBlock 인스턴스가 Grid 인스턴스의 일부인지 확인해야합니다. 다음을 수행 할 수 있습니다. mygrid.Children.Add (myTextBlock);
Rodrigo Caballero

런타임에 변경 사항을 실행해야 할 때 디스패처를 사용하는 것을 잊지 마십시오. 제 경우였습니다.
Hagen

32

다음은 누군가를 도울 수있는 예입니다.

Grid test = new Grid();
test.ColumnDefinitions.Add(new ColumnDefinition());
test.ColumnDefinitions.Add(new ColumnDefinition());
test.RowDefinitions.Add(new RowDefinition());
test.RowDefinitions.Add(new RowDefinition());
test.RowDefinitions.Add(new RowDefinition());

Label t1 = new Label();
t1.Content = "Test1";
Label t2 = new Label();
t2.Content = "Test2";
Label t3 = new Label();
t3.Content = "Test3";
Label t4 = new Label();
t4.Content = "Test4";
Label t5 = new Label();
t5.Content = "Test5";
Label t6 = new Label();
t6.Content = "Test6";

Grid.SetColumn(t1, 0);
Grid.SetRow(t1, 0);
test.Children.Add(t1);

Grid.SetColumn(t2, 1);
Grid.SetRow(t2, 0);
test.Children.Add(t2);

Grid.SetColumn(t3, 0);
Grid.SetRow(t3, 1);
test.Children.Add(t3);

Grid.SetColumn(t4, 1);
Grid.SetRow(t4, 1);
test.Children.Add(t4);

Grid.SetColumn(t5, 0);
Grid.SetRow(t5, 2);
test.Children.Add(t5);

Grid.SetColumn(t6, 1);
Grid.SetRow(t6, 2);
test.Children.Add(t6);

1
for (int i = 0; i < 6; i++)
{
    test.ColumnDefinitions.Add(new ColumnDefinition());

    Label t1 = new Label();
    t1.Content = "Test" + i;

    Grid.SetColumn(t1, i);
    Grid.SetRow(t1, 0);
    test.Children.Add(t1);
}

1

이 시도:

                Grid grid = new Grid(); //Define the grid
                for (int i = 0; i < 36; i++) //Add 36 rows
                {
                    ColumnDefinition columna = new ColumnDefinition()
                    {
                        Name = "Col_" + i,
                        Width = new GridLength(32.5),
                    };
                    grid.ColumnDefinitions.Add(columna);
                }

                for (int i = 0; i < 36; i++) //Add 36 columns
                {
                    RowDefinition row = new RowDefinition();
                    row.Height = new GridLength(40, GridUnitType.Pixel);
                    grid.RowDefinitions.Add(row);
                }

                for (int i = 0; i < 36; i++)
                {
                    for (int j = 0; j < 36; j++)
                    {
                        Label t1 = new Label()
                        {
                            FontSize = 10,
                            FontFamily = new FontFamily("consolas"),
                            FontWeight = FontWeights.SemiBold,
                            BorderBrush = Brushes.LightGray,
                            BorderThickness = new Thickness(2),
                            HorizontalContentAlignment = HorizontalAlignment.Center,
                            VerticalContentAlignment = VerticalAlignment.Center,
                        };
                        Grid.SetRow(t1, i);
                        Grid.SetColumn(t1, j);
                        grid.Children.Add(t1); //Add the Label Control to the Grid created
                    }
                }
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.