Advanced Forum Search Results
-
No, it is not helpful.
I didnt have problem with the format. I am unable to assign the value, at the same time i dont want to display the default value at the begining inside my timepicker control. I want to set the DateTime inside a property.
I hope it will give clear idea on the problem.
Regards
Ashok
-
Hi,
I attached complete required code. MainPage is the default xaml page that is loaded from app.xaml
MainPage.xaml.csnamespace ChildWindowTest
{
public partial class MainPage : UserControl
{
CWInfo cwInfo = null;
public MainPage()
{
InitializeComponent();
this.Loaded += ...
-
Hi,
I tried to set the value of the TimePicker control, it is given exception as "Unable to assign to Nullable ...etc".
I did like,..sampleTime.SetValue(Toolkit.TimePicker.ValueProperty, value); // Toolkit = System.Windows.Controls;
It worked fine with the March release, but it is not working with the recent release(July).
If ...
-
I am working on IE7; is this is the reason?
I am able duplicate the problem.
Please let know if it is not the reason, so that i can send the code which i worked, it will help to trace the problem.
I created a new project(and new solution), copied the entire code that you have specified, still, it is duplicatable.
Regards
Ashok
-
Hi Mog Liang,
I am able to reproduce this, and i got the error..
If we create a usercontrol newly, it's xaml page appears as below.
<UserControl x:Class="DateTimeCheck.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
-
Hi Jonathan,
Sorry for the late reply.
I regret to inform this, that it has not solved my problem. I am able to duplicate the problem with your steps too!!!
Please let me know, how i can rectify the above said problem.
Regards
Ashok
-
Hi,
I am using TimePicker control. Previously, with Silverlight3 beta, the RangeTimePickerPopup worked fine.
But, after migrating to Silverlight3. RangeTimePickerPopup is not working properly.
If we keep usercontrol height as some 100(less than 500), the RangeTimePickerPopup is not displaying properly,like some part of the RangeTimePickerPopup ...
-
Hi,
I am using ChildWindow to use it as a popup dialog.
I am having a User control, say 'X'. It is having a three radio buttons; and OK, &Cancel buttons(to fire working events and close popup dialog).
I load three usercontrols u1, u2, or u3 depending on radio buttons selection on to the usercontrol 'X'. In this, u2 ...
-
Hello Spiderman,
Find the attached code. In this, stream is xaml file as a stream
System.IO.StreamReader reader = new System.IO.StreamReader(stream); // System.IO.Stream stream
string str = ...
-
Hi ,
I want to display the X-axis(independent axis) with some formatting, like, from origin to the next vertical line of the X-Axis, i want to specify a period(start date and end date), in between the Y-Axis to the vertical line, i want to specify some text(text is related one), i want to do that with the databinding(this is optional).
Is it ...