PageRenderTime 46ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/TugberkUg.WLW.HighlightMe/WLWForm.cs

#
C# | 27 lines | 21 code | 6 blank | 0 comment | 0 complexity | dbb8b9a5bf6cc057e9b879b8120fda7b MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace TugberkUg.WLW.HighlightMe
  10. {
  11. public partial class WLWForm : Form {
  12. public string ContentText { get { return txtContent.Text; } }
  13. public string SelectedLanguage { get { return cbLanguges.SelectedItem.ToString(); } }
  14. public WLWForm() {
  15. InitializeComponent();
  16. }
  17. private void WLWForm_Load(object sender, EventArgs e) {
  18. cbLanguges.SelectedIndex = 0;
  19. }
  20. }
  21. }