Skip to content

Instantly share code, notes, and snippets.

@fny
Created May 11, 2012 08:22
Show Gist options
  • Select an option

  • Save fny/2658324 to your computer and use it in GitHub Desktop.

Select an option

Save fny/2658324 to your computer and use it in GitHub Desktop.
Windows Mobile 6.5 Start Menu
<Form Width="320" Height="240">
<StartMenu_GridScene ID="Scene">
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="320" Height="188" Columns="5" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" VerticalWrapAround="TRUE">
<Image ID="Selection" Left="0" Top="-15" Width="80" Height="79" Source=".\StartMenu_Selection.png" />
<Layer ID="GridItem" Width="80" Height="83" OnAction ="GridItemAction">
<Layer ID="Normal">
<Image ID="Image" Left="25" Top="8" Width="30" Height="30" ScaleStyle="Fit" />
<Text ID="Text" Left="9" Top="49" Width="64" Height="34" FontFamily="Tahoma" FontSize="8" HorizontalAlignment="Center" VerticalAlignment="Top" Wrap="True" Trimming="EllipsisCharacter" ForeColor="#00FFFFFF" BackColor="#00000000" />
</Layer>
</Layer>
<Layer ID="NoItems">
<Text ID="Text" Width="320" Height="20" FontFamily="Tahoma" FontSize="10" ForeColor="#00FFFFFF" Wrap="False" HorizontalAlignment="Center" Trimming="Character" InnerTextType="Resource">shellres.dll,22596</Text>
</Layer>
</GridView>
</StartMenu_GridScene>
</Form>
@fny
Copy link
Copy Markdown
Author

fny commented May 11, 2012

See revision 5d1364 for the original.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment