Guest User

Untitled

a guest
Dec 25th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <Grid DataContext="{Binding MainModel}">
  2. <TextBlock Height="104" Margin="12,12,12,0" Name="LoginTextBlock" VerticalAlignment="Top" Text="You must be an Oracle administrator to use this tool. If you do not know the Oracle Admin user or password, STOP! If you have questions, call Centricity Support @ 1-800-957-6837" TextWrapping="Wrap" FontSize="14" />
  3. <TextBlock Height="30" Margin="91,122,91,0" Name="UsernameTextBlock" VerticalAlignment="Top" Text="Oracle Admin User:"></TextBlock>
  4. <TextBlock Margin="91,0,91,128" Name="textBlock1" Text="Oracle Admin Password:" Height="30" VerticalAlignment="Bottom" />
  5. <TextBox Height="23" Margin="91,145,91,0" Name="UsernameTextBox" VerticalAlignment="Top" Text="{Binding Name}" />
  6.  
  7.  
  8. public partial class LoginWindow : Window
  9. {
  10. public MainViewModel MainModel { get; set; }
  11.  
  12.  
  13.  
  14. public class MainViewModel : BaseViewModel
  15. {
  16. private BaseDbModel _database;
  17. private string _testString = "THIS IS A TEST STRING";
  18. public string Name { get { return _testString; } set { _testString = value; } }
Add Comment
Please, Sign In to add comment