Adding more than one child to a WPF StatusBar results in poor layout with little option to customize. For example, this code:
<StatusBar>
<StatusBarItem>
<TextBlock>Ready</TextBlock>
</StatusBarItem>
<StatusBarItem>
<TextBlock>Set</TextBlock>
</StatusBarItem>
</StatusBar>
Results in:
This is not the ...
How is the StatusBarItem class supposed to be used? Is every element in a StatusBar's content supposed to be wrapped with it?
I don't really understand how StatusBarItem affects the StatusBar layout. It seems like I can use HorizontalAlignment on a StatusBarItem, but not when I put the element in the StatusBar directly:
<StatusBar>
...
Context:
iPhone is connected to the PC via cable and power indicated 100% ( the icon of the batter contains a small power plug also)
Question:
In this stage the phone is powered directly from USB or is it using the battery ?
Thanks
...