Click here to Skip to main content
15,916,091 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is it possible to create a table without displaying the name of the column and borderline in WPF?

If yes, what code do I need to use?
Posted

1 solution

yes possible.

<Grid>
     <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
     </Grid.RowDefinitions>
     <Label Grid.Row="0">row 0</Label>
     <Label Grid.Row="1">row 1</Label>
  </Grid>


see here: Grid Class[^]

and use this to test: http://www.kaxaml.com/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900