Advanced Forum Search Results
-
Hi,
Animations and Controls in Silverlight are vector based...Right? How Silverlight render his content?
It does not use DirectX to render its content like WPF??? Contents are rendered software-sided - How???
Maybe somebody has a link to an explanation???
Thanks in kind, Jana
-
Hi,
yes my grid is empty when the page is loaded.
<ScrollViewer Height="Auto" Width="Auto" x:Name="ReportXAMLContent_Scroller" HorizontalAlignment="Stretch" Margin="10,10,10,10" VerticalAlignment="Stretch" VerticalScrollBarVisibility="Auto" ...
-
Hi,
i have following xaml.
<ScrollViewer x:Name="ReportXAMLContent_Scroller" HorizontalAlignment="Stretch" Margin="10,10,10,10" VerticalAlignment="Stretch" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" Width="500" ...
-
Hi,
do somebody know any solution for a Multiselect DropDown ListBox control like this one? Link
Would be very happy if somebody has an idea :)
Thanks a lot.... Jana ;)
-
Hi,
do anybody know if there is a possibility or have somebody a solution to use multiselect feature in Silverlight combobox?
Would be happy about any answer ;)
Thanks, Jana
-
Thanks :) I used another attribut but i think the attribut "Tag" is the best choice for this job..
Jana
-
Thanks for your answer...your work around works but I still have a little problem.
In my xaml part are a lot of TextBoxes..some of them are "normal" input boxes, some need to check that the user only insert integer values.
I tried to differ them with an additional attribut using the x:Uid<TextBox x:Name="tbone" ...
-
Hi,
i want to load some xaml with the XamlReader.Load(myXamlPart)In this xaml is a TextBox with an KeyDown Event:<TextBox x:Name="ParameterEins" Text="ParameterEins" HorizontalAlignment="Stretch" Margin="10, 50,0,0" KeyDown="checkNumericTextBox_KeyPress" />In my Page.xaml.cs is the ...
-
Hi,
it throws the same exception.
Information, the content of the byte array is from a jpg-image.
Are there other ideas?
thanks
-
Hi,
i want to load a image from a byte array to the Image-Control. How does it work?
I tried it with the following code:
System.Windows.Media.Imaging.BitmapImage bitmapImage = new System.Windows.Media.Imaging.BitmapImage();
bitmapImage.SetSource(new MemoryStream(imageTypeDefinition.EmbeddedImageSource));
image.Source = ...