Click here to Skip to main content
15,889,281 members
Home / Discussions / WPF
   

WPF

 
QuestionWPF Timer Threading Exception Pin
Kevin Marois22-Apr-15 6:25
professionalKevin Marois22-Apr-15 6:25 
QuestionProper way to do MouseDoubleClick in MVVM Pin
David Ceder13-Apr-15 3:17
David Ceder13-Apr-15 3:17 
AnswerRe: Proper way to do MouseDoubleClick in MVVM Pin
Mycroft Holmes13-Apr-15 14:34
professionalMycroft Holmes13-Apr-15 14:34 
AnswerRe: Proper way to do MouseDoubleClick in MVVM Pin
SledgeHammer0114-Apr-15 5:02
SledgeHammer0114-Apr-15 5:02 
AnswerRe: Proper way to do MouseDoubleClick in MVVM Pin
Pete O'Hanlon14-Apr-15 6:09
mvePete O'Hanlon14-Apr-15 6:09 
QuestionHow can we change date in datepicker on selecting different country culture in combo box in MVVM? Pin
Member 1142836713-Apr-15 0:05
Member 1142836713-Apr-15 0:05 
AnswerRe: How can we change date in datepicker on selecting different country culture in combo box in MVVM? Pin
Pete O'Hanlon13-Apr-15 0:42
mvePete O'Hanlon13-Apr-15 0:42 
GeneralRe: How can we change date in datepicker on selecting different country culture in combo box in MVVM? Pin
Member 1142836714-Apr-15 18:16
Member 1142836714-Apr-15 18:16 
I used following code to get country list in combobox and my requirement is on selecting country in combobox, date want to update in date picker with respect to current culture.
public List<string> getCountryList()
{
CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures);
foreach (CultureInfo culture in cultures)
{
try
  {
    RegionInfo region = new RegionInfo(culture.Name);

    if (!(cultureList.Contains(region.EnglishName)))<br />
  {
     cultureList.Add(region.EnglishName);
abbrevationtext.Add("en-" + region.TwoLetterISORegionName.ToLower());

  }
  }<br />
 catch (Exception ex)
  {

  }

  }
      cultureList.Sort();

      return cultureList;
  }

QuestionMFC CDialog hosting WPF components Pin
Member 88339813-Apr-15 4:34
Member 88339813-Apr-15 4:34 
QuestionDataGridComboBoxColumn - Combo Doesn't Show Pin
Kevin Marois1-Apr-15 8:57
professionalKevin Marois1-Apr-15 8:57 
AnswerRe: DataGridComboBoxColumn - Combo Doesn't Show Pin
Mycroft Holmes1-Apr-15 14:23
professionalMycroft Holmes1-Apr-15 14:23 
AnswerRe: EF Autoupdate Pin
Mycroft Holmes1-Apr-15 14:18
professionalMycroft Holmes1-Apr-15 14:18 
GeneralRe: EF Autoupdate Pin
Mycroft Holmes6-Apr-15 12:38
professionalMycroft Holmes6-Apr-15 12:38 
QuestionWPF migration frame work 3.5 to 4.5 framework Pin
karthikchinnu30-Mar-15 8:37
karthikchinnu30-Mar-15 8:37 
AnswerRe: WPF migration frame work 3.5 to 4.5 framework Pin
Gerry Schmitz30-Mar-15 11:43
mveGerry Schmitz30-Mar-15 11:43 
AnswerRe: WPF migration frame work 3.5 to 4.5 framework Pin
Praveen Raghuvanshi5-Apr-15 7:18
professionalPraveen Raghuvanshi5-Apr-15 7:18 
QuestionWPF Image Edit Control Required Pin
TheBabbler26-Mar-15 22:18
TheBabbler26-Mar-15 22:18 
AnswerRe: WPF Image Edit Control Required Pin
Gerry Schmitz30-Mar-15 11:35
mveGerry Schmitz30-Mar-15 11:35 
GeneralRe: WPF Image Edit Control Required Pin
TheBabbler30-Mar-17 2:49
TheBabbler30-Mar-17 2:49 
GeneralRe: WPF Image Edit Control Required Pin
Gerry Schmitz30-Mar-17 6:52
mveGerry Schmitz30-Mar-17 6:52 
QuestionVS2012 Start Page Template Pin
Kevin Marois19-Mar-15 10:29
professionalKevin Marois19-Mar-15 10:29 
AnswerRe: VS2012 Start Page Template Pin
Afzaal Ahmad Zeeshan25-Mar-15 3:52
professionalAfzaal Ahmad Zeeshan25-Mar-15 3:52 
AnswerRe: VS2012 Start Page Template Pin
Richard MacCutchan25-Mar-15 5:39
mveRichard MacCutchan25-Mar-15 5:39 
GeneralRe: VS2012 Start Page Template Pin
zephaneas25-Mar-15 5:47
zephaneas25-Mar-15 5:47 
GeneralRe: VS2012 Start Page Template Pin
Richard MacCutchan25-Mar-15 6:29
mveRichard MacCutchan25-Mar-15 6:29 

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.