วิธีการตั้งค่าตำแหน่งแถวและคอลัมน์ตารางโดยใช้โปรแกรม


93

ฉันมีกริดสองอันภายในแผงควบคุม ตารางแรกมีชื่อว่า GridX เริ่มแรกภายในตารางจะมีอาร์เรย์ 2 มิติของ Textboxes (RowDefs / ColumnDefs) นิยาม TextBox ใน XAML คือ

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

ฉันต้องการเพิ่มTextBlock โดยทางโปรแกรมในตำแหน่งเดียวกับส่วนหนึ่งของ GridX

เอฟเฟกต์ต้องเป็นแบบนี้

<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

คำตอบ:


162

สำหรับคุณสมบัติที่แนบมาคุณสามารถเรียก SetValue บนวัตถุที่คุณต้องการกำหนดค่า:

tblock.SetValue(Grid.RowProperty, 4);

หรือเรียกวิธีการตั้งค่าคงที่ (ไม่ใช่วิธีการอินสแตนซ์เหมือนที่คุณพยายาม) สำหรับคุณสมบัติในประเภทเจ้าของในกรณีนี้ SetRow:

Grid.SetRow(tblock, 4);

SetRow ทำงานในขณะที่ SetValue ไม่ได้: มันกำลังออกจากแถวตามที่เป็นอยู่ (ศูนย์ในกรณีของฉัน)
Anton Tropashko

1
คุณต้องแน่ใจว่าอินสแตนซ์ TextBlock เป็นส่วนหนึ่งของอินสแตนซ์กริดคุณสามารถทำได้: 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.