Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Components:ComponentBase xmlns:Components="MarkLightSpeed.Components">
  3. <Components:Image id="backgroundImage" width="100%" height="100%"/>
  4. <Components:Button id="button" target="{backgroundImage}" OnClick="OnClick" OnRollOver="OnRollOver" OnRollOut="OnRollOut"/>
  5. <Components:Text id="textField"/>
  6. <Properties>
  7. <String id="Label">(Not Set)</String>
  8. <Int id="Width">80</Int>
  9. <Int id="Height">20</Int>
  10. <Int id="FontSize">20</Int>
  11. <Int id="TextColor">0xfff600</Int>
  12. <Int d="BackgroundColor">0xFF4C4C</Int>
  13. </Properties>
  14. <Script>
  15. <![CDATA[
  16.  
  17.  
  18. private void OnRollOut(PointerEventData obj)
  19. {
  20.  
  21. }
  22.  
  23. private void OnRollOver(PointerEventData obj)
  24. {
  25.  
  26. }
  27.  
  28. private void OnClick(PointerEventData obj)
  29. {
  30.  
  31. }
  32. ]]>
  33. </Script>
  34. </Components:ComponentBase>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement