Advertisement
Guest User

Untitled

a guest
May 27th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <dxlc:LayoutControl Grid.Row="1">
  2. <dxlc:LayoutGroup>
  3. <dxlc:LayoutItem Label="Database:">
  4. <dxe:TextEdit ToolTip="Enter the database name."
  5. Text="{Binding DSName, Mode=TwoWay, ValidatesOnNotifyDataErrors=True}"
  6. HorizontalAlignment="Left"
  7. Width="200">
  8. </dxe:TextEdit>
  9. </dxlc:LayoutItem>
  10. <dxlc:LayoutItem Label="Description:">
  11. <dxe:TextEdit x:Name="Description" ToolTip="Enter the description"
  12. Text="{Binding Description, Mode=TwoWay,ValidatesOnNotifyDataErrors=True}"
  13. TextWrapping="Wrap"
  14. VerticalContentAlignment="Top"
  15. Height="100"/>
  16. </dxlc:LayoutItem>
  17. </dxlc:LayoutGroup>
  18. <Separator/>
  19. <dxlc:LayoutGroup>
  20. <dxlc:LayoutItem Label="IP Address:">
  21. <dxe:TextEdit x:Name="IPAddress" ToolTip="Enter the IP address of the database server."
  22. Text="{Binding IPAddress, Mode=TwoWay, ValidatesOnNotifyDataErrors=True}"
  23. HorizontalAlignment="Left"
  24. Width="200"/>
  25. </dxlc:LayoutItem>
  26. <dxlc:LayoutItem Label="Username:">
  27. <dxe:TextEdit x:Name="Username" ToolTip="Enter the database username."
  28. Text="{Binding Username, Mode=TwoWay, ValidatesOnNotifyDataErrors=True}"
  29. HorizontalAlignment="Left"
  30. Width="200"/>
  31. </dxlc:LayoutItem>
  32. <dxlc:LayoutItem Label="Password:">
  33. <dxe:PasswordBoxEdit x:Name="Password" ToolTip="Enter the password for the database."
  34. Text="{Binding Password, Mode=TwoWay,ValidatesOnNotifyDataErrors=True}"
  35. HorizontalAlignment="Left"
  36. Width="200"/>
  37. </dxlc:LayoutItem>
  38. </dxlc:LayoutGroup>
  39. </dxlc:LayoutControl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement