Click here to Skip to main content
15,881,380 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Custom input for Silverlight DatePicker Pin
Mycroft Holmes26-Jul-11 23:47
professionalMycroft Holmes26-Jul-11 23:47 
GeneralRe: Custom input for Silverlight DatePicker Pin
jadughar27-Jul-11 2:49
jadughar27-Jul-11 2:49 
AnswerRe: Custom input for Silverlight DatePicker Pin
Simon Bang Terkildsen27-Jul-11 22:21
Simon Bang Terkildsen27-Jul-11 22:21 
SuggestionRe: Custom input for Silverlight DatePicker Pin
Oludayo Alli16-Aug-11 2:10
Oludayo Alli16-Aug-11 2:10 
Answer[SOLVED]Re: Custom input for Silverlight DatePicker Pin
jadughar20-Sep-11 21:01
jadughar20-Sep-11 21:01 
QuestionHow to create a wpf application Pin
Naim_8626-Jul-11 20:02
Naim_8626-Jul-11 20:02 
AnswerRe: How to create a wpf application Pin
Mycroft Holmes26-Jul-11 23:25
professionalMycroft Holmes26-Jul-11 23:25 
QuestionAuto Scrolling to Bottom Pin
AmbiguousName26-Jul-11 20:01
AmbiguousName26-Jul-11 20:01 
hello guys... I wrote this code to scroll down to bottom automatically in a list whenever a new item is added to it. But it points to second last item not the last one. Here is the code
private void AutoScrollToBottom()
{
   if (lstName.Items.Count > 0) 
   {
      lstName.SelectedIndex = lstName.Items.Count - 1;
      lstName.UpdateLayout();
      lstName.ScrollIntoView(lstName.SelectedIndex);
   }
}

Whats wrong with it .... thnx
AnswerRe: Auto Scrolling to Bottom Pin
Simon Bang Terkildsen27-Jul-11 22:39
Simon Bang Terkildsen27-Jul-11 22:39 
AnswerRe: Auto Scrolling to Bottom Pin
AmbiguousName28-Jul-11 1:45
AmbiguousName28-Jul-11 1:45 
AnswerRe: Auto Scrolling to Bottom Pin
SledgeHammer0128-Jul-11 5:08
SledgeHammer0128-Jul-11 5:08 
QuestionMigration from RadScheduler to RadScheduleView Pin
Jeyakumarbics126-Jul-11 19:23
Jeyakumarbics126-Jul-11 19:23 
AnswerRe: Migration from RadScheduler to RadScheduleView Pin
Mycroft Holmes26-Jul-11 23:23
professionalMycroft Holmes26-Jul-11 23:23 
AnswerRe: Migration from RadScheduler to RadScheduleView Pin
Michał Zalewski31-Jul-11 2:39
Michał Zalewski31-Jul-11 2:39 
QuestionAppointmentCreate event in RadScheduleView Pin
Jeyakumarbics126-Jul-11 19:14
Jeyakumarbics126-Jul-11 19:14 
QuestionHow to get the column in runtime? Pin
sadas232341s26-Jul-11 8:27
sadas232341s26-Jul-11 8:27 
AnswerRe: How to get the column in runtime? Pin
Mark Salsbery26-Jul-11 9:08
Mark Salsbery26-Jul-11 9:08 
AnswerRe: How to get the column in runtime? Pin
Ian Shlasko26-Jul-11 10:24
Ian Shlasko26-Jul-11 10:24 
QuestionWPF ComboBox Synchronization Problem Pin
AndyCSharp26-Jul-11 1:24
AndyCSharp26-Jul-11 1:24 
AnswerRe: WPF ComboBox Synchronization Problem Pin
Simon Bang Terkildsen26-Jul-11 3:52
Simon Bang Terkildsen26-Jul-11 3:52 
QuestionHow to Update Rows in Silverlight 4 Data grid Using WCF service ? Pin
Sanjay_8724-Jul-11 21:24
Sanjay_8724-Jul-11 21:24 
AnswerRe: How to Update Rows in Silverlight 4 Data grid Using WCF service ? Pin
Abhinav S24-Jul-11 21:41
Abhinav S24-Jul-11 21:41 
Questioncan't edit tabitem Pin
david131324-Jul-11 5:35
david131324-Jul-11 5:35 
AnswerRe: can't edit tabitem Pin
Mark Salsbery24-Jul-11 8:19
Mark Salsbery24-Jul-11 8:19 
GeneralRe: can't edit tabitem Pin
david131324-Jul-11 8:26
david131324-Jul-11 8:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.