Hi,
I have following XamDateTimeEditor (WPF v12.1):
<igEditors:XamDateTimeEditor Name="xamDateTimeEditor1" Grid.Row="0" Grid.Column="1" Width="130" HorizontalAlignment="Center" VerticalAlignment="Center" IsEnabled="True" SpinButtonDisplayMode="Always" Theme="[current]" Value="{Binding SelectedMusicContract.RecordedDate, Mode=TwoWay}" />
which has data binding to
private MusicContract _selectedMusicContract; public MusicContract SelectedMusicContract { get { return _selectedMusicContract; } set { _selectedMusicContract = value; this.RaisePropertyChanged(() => this.SelectedMusicContract);
} }
where MusicContract is an entity.
For some reason the control is disabled on my PC and works on another person's PC. What can be a problem ?
Thanks,
Ed
Hello Ed,
Thank you for your post. I have been looking into it, but without a sample project and more details of your environment like: OS, theme and etc. I cannot be completely sure what can cause this issue, so if this is still an issue for you, could you please send an isolated sample project, where the issue is reproduced, so I can investigate it further for you.
Looking forward for your reply.
Stefan,
I will try to create a sample project... I have Windows 7 64 bit, Visual Studio 2010 Ultimate. In addition I would like to show you another sample of 'working' xamDateTimeEditor:
http://dl.dropbox.com/u/15482621/xamDateTimeEditor.PNG
I am just wondering did you manage to create the sample project, so I can investigate it further for you.