Posts

Showing posts from May, 2013

How to create process Loader in Window Application

1.        Create   ModelLodingUI   Window Form and set the property : FromBoderStyle - None 2.        Drag & Drop Picture Box and set Loading Image. 3.        Paste following code: 4.   namespace LoadingProcess 5.   { 6.        public partial class ModalLoadingUI : Form 7.        { 8.            #region Constants 9.            public bool CloseMe = false ; 10.         #endregion 11.   12.         public ModalLoadingUI() 13.         { 14.             InitializeComponent(); 15.         } 16.  ...

How To Create Google Map In WPF

Gmaap.xaml -------------- namespace Test {     /// <summary>     /// Interaction logic for Window1.xaml     /// </summary>     public partial class Googlemaps : Window     {         public Googlemaps( string from , string to)         {             InitializeComponent();             txt_From.Text = from;             txt_To.Text = to;             btn_Search_Click( null , null );         }         private void Window_Loaded( object sender, RoutedEventArgs e)       ...