Hi, This is just a suggestion to use Log4Net for tracing purpose Link :- Log4Net Hope this helps !!
Elegantly Wasted
Posts
-
Effective way of writing logs in web service in C#.net -
How to call from Nested UserControl another UserControlHi Roni, I created a WPF with nested controls and its working fine, what i did was Created 4 UserControls naming - UC1, UC2, UC3, UC4 As per the scenario stated in the question a UserControl is nested in another The code is as below :- UC1 XAML:- UC1 CODE BEHIND: private void Button_Click(object sender, RoutedEventArgs e) { this.MainGrid.Children.Clear(); this.MainGrid.Children.Add(new UC2()); } UC2 XAML:- UC2 CODE BEHIND: private void Button_Click(object sender, RoutedEventArgs e) { this.MainGrid.Children.Clear(); this.MainGrid.Children.Add(new UC3()); } Similary for UC3 and UC4 Try it let me if any problems
-
Regarding WPFHi, Please picture the below points (WPF-> WCF-> DataBase) 1. MVVM is an architecture design pattern used in WPF 2. WPF application need to consume a WCF service for performing CRUD operations 3. WCF will contain the logic for performing CRUD operations with Database for that you can use NHibernate, Entity Framework or with simple ADO.net etc
-
adding scroll bars in gridviewtry adding the grid view under as div and update panel as below...
... ... ...
... hope this work out successfully...
-
how to add scroll bar to grid view (plz help with code)