Click here to Skip to main content
15,917,538 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
Pete O'Hanlon24-Oct-13 4:20
mvePete O'Hanlon24-Oct-13 4:20 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
SledgeHammer0124-Oct-13 4:55
SledgeHammer0124-Oct-13 4:55 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
Pete O'Hanlon24-Oct-13 5:00
mvePete O'Hanlon24-Oct-13 5:00 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
_Maxxx_27-Oct-13 19:14
professional_Maxxx_27-Oct-13 19:14 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
Ashfaque Hussain24-Oct-13 19:29
Ashfaque Hussain24-Oct-13 19:29 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
Pete O'Hanlon24-Oct-13 22:09
mvePete O'Hanlon24-Oct-13 22:09 
GeneralRe: How to Show/Hide stack pannel from ViewModel?? Pin
Ashfaque Hussain13-Nov-13 23:29
Ashfaque Hussain13-Nov-13 23:29 
QuestionSend content of button from View to ViewModel Pin
Ashfaque Hussain23-Oct-13 5:30
Ashfaque Hussain23-Oct-13 5:30 
AnswerRe: Send content of button from View to ViewModel Pin
Kenneth Haugland23-Oct-13 6:00
mvaKenneth Haugland23-Oct-13 6:00 
GeneralRe: Send content of button from View to ViewModel Pin
Ashfaque Hussain23-Oct-13 7:41
Ashfaque Hussain23-Oct-13 7:41 
QuestionRe: Send content of button from View to ViewModel Pin
Kenneth Haugland23-Oct-13 12:03
mvaKenneth Haugland23-Oct-13 12:03 
AnswerRe: Send content of button from View to ViewModel Pin
Mycroft Holmes23-Oct-13 13:01
professionalMycroft Holmes23-Oct-13 13:01 
GeneralRe: Send content of button from View to ViewModel Pin
Ashfaque Hussain23-Oct-13 21:16
Ashfaque Hussain23-Oct-13 21:16 
AnswerRe: Send content of button from View to ViewModel Pin
Abhinav S26-Oct-13 1:21
Abhinav S26-Oct-13 1:21 
GeneralRe: Send content of button from View to ViewModel Pin
Ashfaque Hussain7-Nov-13 23:06
Ashfaque Hussain7-Nov-13 23:06 
QuestionNo suitable axis is available for plotting the dependent value Pin
SunnyGaur21-Oct-13 17:10
SunnyGaur21-Oct-13 17:10 
QuestionRe: No suitable axis is available for plotting the dependent value Pin
Kenneth Haugland23-Oct-13 6:20
mvaKenneth Haugland23-Oct-13 6:20 
AnswerRe: No suitable axis is available for plotting the dependent value Pin
SunnyGaur23-Oct-13 17:07
SunnyGaur23-Oct-13 17:07 
Questionany chance to get expression gallery website content Pin
amigoface19-Oct-13 6:19
amigoface19-Oct-13 6:19 
AnswerRe: any chance to get expression gallery website content Pin
Richard Deeming21-Oct-13 3:15
mveRichard Deeming21-Oct-13 3:15 
QuestionSetting the value of TimePicker resets the DatePicker value, how can i solve thi Pin
rizwanahmed2417-Oct-13 11:28
rizwanahmed2417-Oct-13 11:28 
I am using Date and Time picker from windows phone toolkit. i have both controls on my page. I am using two way binding to the System.DateTime property in one of my class, both the controls i.e. the date picker and time picker are bound to one property. everything is working fine except a corner case (which is not really a corner case)

When i change the value in date picker, the property in my class is updated, which is good. When i change the time through time picker the Time is updated in my DateTime property. However while changing the time if i go past 00:00hrs (i.e. 'scroll' through hours until i go pass 0) the date value of the DateTime property is set to current date. This is something i want to avoid, Is there a way i can solve this problem ?

XML
<toolkit:DatePicker Value="{Binding MyDateTime, Mode= TwoWay}"/>                    
<toolkit:TimePicker Value="{Binding MyDateTime, Mode= TwoWay}"/>


C#
public DateTime MyDateTime
{
    get { return dateTime; }
    set { dateTime = value; }
}

AnswerRe: Setting the value of TimePicker resets the DatePicker value, how can i solve thi Pin
Matt T Heffron17-Oct-13 15:03
professionalMatt T Heffron17-Oct-13 15:03 
GeneralRe: Setting the value of TimePicker resets the DatePicker value, how can i solve thi Pin
rizwanahmed2419-Oct-13 10:13
rizwanahmed2419-Oct-13 10:13 
QuestionWPF View Data Template Questions Pin
Kevin Marois17-Oct-13 9:41
professionalKevin Marois17-Oct-13 9:41 
AnswerRe: WPF View Data Template Questions Pin
SledgeHammer0117-Oct-13 17:00
SledgeHammer0117-Oct-13 17:00 

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.