Guest User

Untitled

a guest
Dec 25th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ##LoginWindow.cs
  2. public partial class LoginWindow : Window
  3. {
  4. public MainViewModel MainModel { get; set; }
  5.  
  6.  
  7. ##LoginWindow.xaml
  8.  
  9. <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" />
  10. <TextBlock Height="30" Margin="91,122,91,0" Name="UsernameTextBlock" VerticalAlignment="Top" Text="Oracle Admin User:"></TextBlock>
  11. <TextBlock Margin="91,0,91,128" Name="textBlock1" Text="Oracle Admin Password:" Height="30" VerticalAlignment="Bottom" />
  12. <TextBox Height="23" Margin="91,145,91,0" Name="UsernameTextBox" VerticalAlignment="Top" Text="{Binding _testString}" />
  13.  
  14.  
  15. ##MainViewModel
  16. public class MainViewModel : BaseViewModel
  17. {
  18. private BaseDbModel _database;
  19. public String _testString = "THIS IS A TEST STRING";
Add Comment
Please, Sign In to add comment