My nav drawer is working fine. But I can't figure out how to remove what appears to be a margin around each icon. I want the icons to fill a square space and sit against each other.
- How is the size of the icon set area set?
- How do I make it fill the space?
In this screen shot, see the space between the sides of the icons? I want that removed. And the icons should fill the area.
If I change the height and width of the first icon, I get something like this:
It just doesn't work the way I'd expect.
<syncfusion:NavigationItem Header="Search" Name="mySearchNavButton"
ToolTip="Set the search criteria.">
<syncfusion:NavigationItem.Icon >
<Image Source="/Resources/User-Find.png" Width="100" Height="100" />
</syncfusion:NavigationItem.Icon>
</syncfusion:NavigationItem>
<syncfusion:NavigationItem Header="Names" Name="myNamesNavButton"
ToolTip="See the names from your search." >
<syncfusion:NavigationItem.Icon>
<Image Source="/Resources/Student-Read-04.png" />
</syncfusion:NavigationItem.Icon>
</syncfusion:NavigationItem>