c# - Visual studio 2015 Properties panel -
i'm reading tutorial c# wpf
projects , @ point tells me put tab control on project , set properties this:
grid.rowspan="2" canvas.left="10" canvas.top="2" width="408" height="208" grid.row="1"
my novice problem cannot find grid.rowspan
property on properties panel in order change it.
- are properties available xaml editor?
- is there way find on properties panel also?
you tabcontrol goes inside page's grid, grid.rowspan property inherited that.
additionally, may have defined rows in grid in way similar this:
<grid> <grid.rowdefinitions> <rowdefinition height="auto" /> <rowdefinition height="auto" /> <rowdefinition height="*" />
so, basically, should work. rowspan written capital "r" , "s" btw, htat it?
Comments
Post a Comment