Advanced Forum Search Results
-
HI Rick,make sure all dependent values(Y axis) to be integer (use
Convert.ToInt32(value), before setting the Itemsource to Chart Object.
Please mark it as answered, if this helps to meet your requirement
Thanks,
Raju
-
Hi vemuri.kishor,
Raise Click event for ToggleButton and add below sample code
private void ToggleButton_Click(object sender, RoutedEventArgs e){
if (ToggleButton.IsChecked == true){
//set control visible to true
contolName.Visibility = Visibility.Visible;
} else if(ToggleButton.IsChecked == false){
//set control visible to ...
-
HI Sanaa,
[quote user="s4n44"]Raise MouseLeftButtonUp event for DataGrid[/quote]
datagridContracts_MouseLeftButtonUp(object sender, MouseButtonEventArgs e){
[quote user="s4n44"]within MouseLeftButtonUp event HandleClick and raise DoubleClick event [/quote]
dataGridMouseClickManager.HandleClick(sender, ...
-
HI,
below code is .xaml content, Animation of circle start from top left corner instead of center.
<Canvas x:Name="LayoutRoot" Background="White">
<Button Content="Click"/>
<!--Click="Button_Click"--><Ellipse x:Name="rect" Fill="Green"
Width="10" ...
-
HI gvdamn,Add below code in Button Click event, below code will create Circle and animate as per your requirement.
// Create a Green Circle that will be the target of the animation.Ellipse myCircle = new Ellipse();
myCircle.Width = 10;
myCircle.Height = 10;Color myColor = Color.FromArgb(255, 0, 255, 0);SolidColorBrush myBrush = new ...
-
Hi Amanda,
Did you saw MY previous post link ,
[quote user="Amanda Wang - MSFT"]http://designwithsilverlight.com/2008/10/02/filmstrip-gallery/[/quote] and Film Strip are same !!!
Thanks,
Raju
-
HI Manish,
you can look into Film Strip Sample by jeff
Please mark it as answered, if this helps to meet your requirement
Thanks,
Raju
-
HI TheRekz ,
Did you installed visual Studio 2008 SP1?
If not install that first, after successful installation.
Install Silverlight.
Please mark it as answered, if this helps to meet your requirement
Thanks,
Raju
-
HI Grahf,
[quote user="Grahf"]Is there a reason why Silverlight does not have the same selection of cursors the .net framework has?[/quote]
Silverlight.net frame work is subset of .net frame work and is light weight. Only minimum required functionality is avaliable in silverlight.
Silverlight Cursors class only supports ...
-
Hi bobbby ,
below is source code of animation in silverlightStoryboard storyboard = new Storyboard();DoubleAnimation animation = new DoubleAnimation();
animation.From = 10.00; // Property which is denoted in double value
animation.To = 200.00;// Property which is denoted in double value
animation.SpeedRatio = 1;animation.Duration = new ...