Tagged Questions
0
votes
0answers
42 views
Background property not working in my custom control derived from ItemsControl
I am creating one custom control which is derived from ItemsControl and now i am facing one problem. When i try to set background to my control in sample, it not works. Below find my control's arch.
...
1
vote
1answer
33 views
Silverlight / WPF communication
I have a WebBrowser control showing a Silverlight application. This control is in a WPF application. Obviously this is a bit of a hack to integrate Silverlight with WPF as ultimately neither one knows ...
0
votes
0answers
54 views
How to move a button with my mouse position in wpf?
I want to drag(move) a button with mouse position?
XAML Code
<Button Name="Samplebutton" Content="Moving" Width="100" Height="35"/>
In this, i want to move the above button based on the ...
1
vote
1answer
95 views
Create hollow border/square wpf
I want to create a control in WPF/Silverlight. This control is rectangle/border which is hollow from the center. My intention is to gray out everything else except for a squared area within the ...
0
votes
0answers
45 views
Changing ScrollBar thumb to jump to click position
I'm building a WPF application designed run on a very large touch screen and user testing has determined that I need to modify the standard ScrollBar behavior.
When a user clicks the background of ...
0
votes
1answer
133 views
how to create propertypath for Storyboard.TargetProperty=“OpacityMask.Viewbox” in codebehind?
I'm trying to use WPF to learn how to animate the size of the viewbox for an opacitymask using codebehind, in xaml it's like this
<Storyboard>
<RectAnimation ...
0
votes
1answer
223 views
How to create item list in custom StackPanel for specific custom control?
I want to create a custom StackPanel derived from StackPanel. But to add the items, I want to create a special list (can use a List<> or ObservableCollection<>). It should be something like ...
0
votes
1answer
110 views
how to apply Transition animation between two Datatemplates while swapping within same WPF Listbox?
I have a scenario where i have two different DataTemplates for a Listbox which i apply dynamically as needed while changing the ItemsSource of Listbox. The two DataTemplates containing different UI, ...
0
votes
1answer
540 views
Bind user control dependency properties in MVVM style Windows Phone app
I'm having some issues with binding some custom controls in a Windows Phone app right now. Usually this is never an issue but apparently my mind can't comprehend this today.
So I'm doing an MVVM ...
1
vote
1answer
162 views
How to add trigger for MouseUp in WPF?
I want to make my button (I define a ControlTemplate for a Button) to trigger my animation when mouse-up (clicked on the button and and left the mouse button). That's because Button doesn't have ...
0
votes
1answer
152 views
Difference between itempresenter, contenetpresenter, itemcontrol,contentcontrol
What is the significant difference between
ItemPreseneter and ContentPresenter also ItemsControl and ContentControl in WPF, Please any one help me to lean the usage of this items along with some ...
0
votes
0answers
105 views
How to bring Image in front while scaling it using animation in WPF?
I was working with blend, i stuck in situation where i have to bring the image in front while scaling it.
Scenario:
I have ScrollViewer inside that I have a main Grid containing other various ...
2
votes
1answer
122 views
How to get general ItemContainer type for WPF ItemsControl
I want to determine ItemContainer type from an existing ItemsControl object.
var item = control as ItemsControl;
//HOW to get child container Type?
Example how blend does this:
Blend ...
0
votes
0answers
120 views
Silverlight Chart with smooth curved line [closed]
I'm using the silverlight Charting control to build a line chart for a WP app.
<charting:LineSeries
Title="Mood"
ItemsSource="{Binding}"
DependentValuePath="MoodValue"
...
0
votes
2answers
105 views
Why a simple textblock app runs and a simple app with a button fails in WPF
Folks, I am seeing that the below code gives runtime error when I paste it in notepad and save as test.xaml and run it.
<Page xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
1answer
141 views
Button gives unintended effects on click of the button
Folks, I am very new to WPF ad started learning it with Sam's E-book. I just tried the same code given in the book as follows
<Window x:Class="wpfTest.MainWindow"
...
1
vote
1answer
971 views
LISTBOX grouping using collectionView Source
ListBox Grouping using CollectionView Source Programmatically
like
Task 1 (certain date)
Task 2 (certain date)
Task 3 (certain date)
Task 4 (certain date)
To
Certain date1
Task 1
...
0
votes
1answer
141 views
Iterating over dynamically generated controls and getting certain properties
I have a UserControl that has an ItemsControl. This ItemsControl is bound to a list of objects. To display those objects, I have *DataTemplate*s that determine how the object is presented.
I want to ...
0
votes
1answer
239 views
Why does this simple LineSegment jump from canvas centre-bottom to top-left in Silverlight?
I have some very simple code that 'correctly' draws a short vertical black line on a 1024x768 blue canvas in WPF (well in Silverlight 4).
<UserControl x:Class="SimpleCanvas.MainPage"
...
1
vote
1answer
140 views
Canvas ItemsControls item position issue
<Canvas x:Name="MainCanvas"
Width="350"
Height="622">
<Canvas.RenderTransform>
<CompositeTransform TranslateX="-350" />
...
0
votes
1answer
102 views
Find empty space in silverlight canvas
I have a silverlight canvas that I have populated with boxes. What I need to do then is find any empty space in the canvas as that will represent a gap in coverage (this is for a policy). Is there ...
1
vote
1answer
193 views
How can you access the Control within a ControlTemplate in Silverlight?
I have the following code:
ControlTemplate ct = (ControlTemplate)XamlReader.Load(validXmlString);
Now I need to obtain the control that this template created, in my case, a Button. I have searched ...
0
votes
1answer
146 views
WP7 Silverlight 3D Cylinder
I'm looking for some xaml implementation of 3d Cylinder which i can use in WP7, i heard about Balder but, as i tried it looks like project is not ready to be used on WP7.
0
votes
1answer
470 views
Change Path.Data in a wpf storyboard
How does one animate path data in wpf? We have a series of templated silverlight-5 controls which change this property; these controls need to be adapted to work in wpf. In wpf, when the VSM tries to ...
0
votes
1answer
472 views
Undo Redo for ink canvas strokes does not support Z-order.
I have implemented command pattern for undo redo operation similar as given here : http://msdn.microsoft.com/en-us/library/aa972158(v=vs.90).aspx.
This sample does not supports Z-ordering of ...
4
votes
2answers
167 views
How can I use a Custom Property within a Custom Template?
Let's say a want to create a custom button that has a small ellipse on the left hand side.
I want the color of this ellipse to be data bindable.
So I fire up Blend and put a button on the surface ...
2
votes
3answers
323 views
How to create disconnected line graph? [closed]
I am working with Silverlight and WPF stock exchange application. I'm trying to create a graph like scattered line graph.
How can I draw this chart? Can it be done by Silverlight Toolkit graph? Or ...
2
votes
3answers
404 views
Display non rectangular shaped TextBlock
I want to display text in a triangular area. But I cannot figure out how to change the shape of the TextBlock so that text is displayed in triangular region instead of the regular rectangular region.
...
0
votes
1answer
336 views
silverlight scrollviewer and canvas with h/w set. Cant get vertical bar to hide even when lots of room
Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my ...
5
votes
1answer
315 views
Is it possible to scale text size inside textbox when text starts to go out of borders?
So the question is pretty straightforward. Is this possible in Silverlight 4?
Update:
This is the code I have got when trying to update edventuro.us solution for text block
namespace ...
0
votes
1answer
539 views
Suppress WebBrowser JavaScript message error
I use in an WPF project a XAML-components with a WebBrowser Control. In it, I load a page by the user is prompted to enter login information. After the login procedure, I get a JavaScript error ...
1
vote
2answers
1k views
Silverlight to WPF Converter
Since WPF and Silverlight are very close to each other(in terms of syntax).
My query is , do we have any tool that can convert wpf control to silverlight control and vice versa.
I understand that ...
0
votes
1answer
116 views
Custom Control for Painter application to show different erasers
I am creating paint like application using WPF. Now i need to create control which can be used to display eraser but it should be like adobe photoshop's eraser control where three different types of ...
0
votes
2answers
80 views
Please recommend wpf/silverlight control suit
I am developing an application which will have a WPF interface and a Silverlight/Azure implementation
So I'm looking to invest in a control suit that will require as little repeat work for the two UI ...
1
vote
1answer
182 views
Silverlight custom controls
are there good books on developing custom controls for silverlight?
What I want is to create a grid-control that can also act as TreeList-control. Can you tell me what is a good base-class for such a ...
5
votes
1answer
89 views
Is there a way to simplify setup of dependency properties in WPF and Silverlight?
I have a basic WPF/Silverlight user control code which includes a label that I want to set the value of from code which uses the control. Is there a way to simplify the requirements for definition of ...
1
vote
2answers
340 views
How to create an ownerdrawn control in silverlight 4?
Can't find a good explanation on how to create a simple ownerdrawn control in Silverlight.
Let's say I want to create an "Arch" or a "Line" control.
What should be my base class?
How do I get ...
1
vote
1answer
251 views
Silverlight in WPF WebBrowser control under x64
is there a way to run SilverLight in WPF WebBrowser control in x64 mode? (Same problem is with Flash).
Compiling application in x86 mode only is not a solution.
Thanks in advance
2
votes
1answer
470 views
Help me design a Silverlight App (specifically, the Master/Detail Data Entry Form)
I am looking for some Design/Architect advice for a Silverlight Application.
This will be a TimeTicket (TimeSheet) application, where employees may go in and enter their daily time.
We have an ...
1
vote
1answer
391 views
Windows Phone, dynamic style
I'm working on an app where I want the color of a few borders to change depending on the users choice of theme. The borders are partly placed in the xaml, but also dynamically generated throughout the ...
1
vote
1answer
825 views
wpf - How to use Path, ElementName with markup extension
I am using this markup extension
<DataGridTextColumn Header="Something"
Binding="{controls:SwitchBinding Something, Yes, No}" />
It all works fine, except that now I need ...
0
votes
2answers
868 views
How to make a control resizable in Silverlight
I want the user to resize a few combined controls and a few single controls in Silverlight during runtime. How can I manage this? Is there a way to put the controls in rectangles and make the ...
2
votes
1answer
556 views
Silverlight custom control default xmlns
In Silverlight, is it possible to set the default xmlns name of a custom control?
By default, each time I drag and drop one of my custom contrl on a window, the assembly and the control is ...
0
votes
1answer
1k views
How can I refresh Silverlight controls?
How can I refresh a Silverlight listbox or datagrid? When I bind items the listbox or datagrid doesn't refresh until I click inside the control. This is annoying as I cannot see added items runtime.
1
vote
1answer
370 views
How to create IsSelected property for custom itemscontrolItem?
I am trying to create a custom ItemsControl by directly inheriting from ItemsControl (WPF/Silverlight, I am using same code base for both). I have created an Item class for it by inheriting from ...
0
votes
1answer
175 views
Wpf nesting containers
On a window control, my main container is a grid.
My grid has 2 rows, one row definition is 50*, and the other is 250*.
Now i want to add a right sidebar, lets say with a StackPanel.
I would like to ...
4
votes
2answers
748 views
Silverlight App inside WPF WebBrowser?
I have a hopefully trivial question. Currently, my company works with a rather obscure language (SyngergyDE) and we need to call a SilverLight application inside our product. Unfortunately, this ...
3
votes
3answers
2k views
All WPF control properties are dependency properties. True or False?
While answering this question I noticed that I have never come across any property which is not a dependency property (WPF Controls, no 3rd party controls). Although, when I started with WPF I ...
3
votes
3answers
241 views
ItemsControl “Overflow to Popup”
I have an ItemsControl that I want to fit into a small space. Typically it will display less than 3 items, however, I would like the it to indicate when it has more items than it can display and have ...
1
vote
1answer
51 views
Concatenate styles in SL 4 / WPF?
How can I use several styles on a control?
For example, I have a style that defines the size and margins for buttons, and several styles that define different color schemes. I would like to use the ...

