- Added zigzag decoding - Added floating point value compression by reinterpreting and serializing floating point values as integer values - Moved serialization code to common code project
42 lines
923 B
XML
42 lines
923 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Elements xmlns="Client.ConsoleForms.Graphics">
|
|
<DialogView id="Success"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Options>
|
|
<Option>Quit</Option>
|
|
</Options>
|
|
<Text>Login succeeded!</Text>
|
|
</DialogView>
|
|
|
|
<TextView id="balance"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Text>@string/SE_bal</Text>
|
|
</TextView>
|
|
|
|
<ListView id="menu_options"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1"
|
|
border="2">
|
|
<Views>
|
|
<ButtonView id="history">
|
|
<Text>@string/SE_hist</Text>
|
|
</ButtonView>
|
|
|
|
<ButtonView id="create">
|
|
<Text>@string/SE_tx</Text>
|
|
</ButtonView>
|
|
|
|
<ButtonView id="update">
|
|
<Text>@string/SE_pwdu</Text>
|
|
</ButtonView>
|
|
</Views>
|
|
</ListView>
|
|
</Elements> |