Hi,
I would like create a very simple Paint application using MAF on WPF.
The Add Ins I would like to create are:
Main Image Processor - Shown the current paint
Tool Box - The user can select some types of drawings tools
Layers - The user can select the layers to display, delete layers and select on which layer to work on
the question is: How I can interact between the different Add-Ins without using the host?
Thanks,
Ronny
Hello All,
I am beginner on WPF and need your help.
Problem:
I have 4 buttons on the form and need to apply 2 different style on pair of 2 buttons.
Is there any way we can achive this ?
please provide me sample if possible...
Thanks in advance...
I'm trying to use the MediaElement control in WPF to play back video. It works great in Vista, but when I run it on an XP machine I get tearing in the display. It looks as if it's not using the vertical synch, and just updating the screen mid-draw.
Anyone know how to fix this problem?
There was a problem. When I change the background color of WPF toolbar Overflow Button in the right corner does not change color. How to fix it?
Example:
i created a WPF application and i added a setup solution and i did everything to deploy the project and i got my setup.msi
i installed it in my system,
The problem is my application is running in task manager, but i cant see my application any where in desktop or start menu,but tast manager process show that my application is running. whats the problem??
Hi,
We have an existing web application developed using ASP.NET/Ajax
We are planning to move it to either WPF or Silverlight.
Can someone please compare these 2 technologies with respect to productivity,performance, maintainability,trade-offs, their pros and cons etc ?
Thanks for reading.
I use ToolBar for my WPF application. As I understand, there is no easy way to make it floating. I just want to remove element which I don't want to be displayed: several dots in the left side of ToolBar. Is there any Properties to customize view of ToolBar? Or, maybe, it's possible to redefine a ToolBar Template?
Hello,
I'm looking for a decent WPF or Winform time range selector, much like a home central heating system, where a time range is selectable.
http://lhill.com.au/l%20hill%20web%20page%20pictures/time%20clock%202.jpg
Is there any GUI libraries or examples available to fulfill this need?
First of all i must say i am new to wpf and mvvm.
I want to develop a client-server application(clients send info to the server and the serer notifies one or more of them..consider something like yahoo messenger(some user changes his status..sends info to the server and the sever notifies his friends and changes to their UI are made)
My question is: does mvvm suits well with this kind of application?
I have a wpf tab control which is highly customized through styles. I have referenced those styles in a resourcedictionary "TabControlResources". How do I reference "TabControlResources" in another resourcedictionary?. I have a resourcedictionary called "MainViewResources" and I would like to reference the tab style from my "TabControlResources" in that resourcedictionary.
Thanks in advance.
Hello,
I want to create a simple button template with an image and text inside it. But i want to keep the System button's look and feel.
Can anyone tell me step by step how to create it?
P.S. : I have already tried it with CustomControl in wpf and BasedOn property.
How can I insert text into a WPF textbox at caret position? What am I missing? In Win32 you could use CEdit::ReplaceSel().
It should work as if the Paste() command was invoked. But I want to avoid using the clipboard.
Hi,
I would like to make a rotating form WPF effect like the one in the norton antivirus 2010.
The rotating form can be seen at 8' 07" in this video: http://www.youtube.com/watch?v=A3hHPdgi9Nk&feature=related (I'm sad but this was the only video I found on YouTube)
Thanks.
I am getting this error in my WPF app:
The type 'Microsoft_Windows_Themes:ScrollChrome' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
Any idea?
Is there some attribute in WPF that I can add to element, so when I click it the target control get focus? The closest thing I have found is 'Target', but it works only with access keys and clicking it has no effect.
Hi
I am trying to determine which row (RowDefinition) my mouse is over within a WPF grid.
I have tried adding the MouseEnter event to the RowDefinition but the event doesn't fire, the Event does fire on the Grid itself but that doesn't help as I need the name of the row the mouse is currently over.
Thanks in advance.
Hi
I have installed the lasted Windows 7 SDK which countains .4 profiler.
I ran the WPF perf suite.
Perforator does display some data when i launch my app.
But visual profiler does not display anything !!?? The timeline moves but not data is collected...
Any idea ?
Thanks
Jonathan
Given a WPF window, which may or may not have animations, I'd like to wait until they are all done before continuing processing. Is there a generic way to do this. Currently I can do something like this:
void WaitForAnimation(Storyboard storyboard)
{
WaitUntil(() => storyboard.GetCurrentState() == ClockState.Stopped);
}
But this assumes I know the storyboards or have some way of finding them. Is there a way of doing that?
Hi,
I am trying to change the default style of a DataGridCell (within a WPF Toolkit DataGrid) when there is a validation error. The default is a red border. How can I put my own template?
Thanks.
Is there any way I can force WPF rendering tiers mentioned here?
http://msdn.microsoft.com/en-us/library/ms742196.aspx
For example I am on tier 2, but I want to simulate the application in tier 1 or 0 scenario.
On the DataGridView in WinForms, I can add empty rows and edit the values of arbitrary cells programmatically like below.
dataGridView1.ColumnCount = 10;
dataGridView1.RowCount = 100;
dataGridView1[1, 1].Value = "a";
Can i do this kind of thing in WPF datagrid ?
I have a WPF UI Bound to a collection of AwesomeClass
Now, AwesomeClass has a collection of AwesomeParts objects.
How can I make my UI In such a way that (as an example)
for each AwesomeClass instance, there is a Tab on a tab panel
and then for each awesome part in that, there is an object on a listbox, on that tab.
Basically: Awesomes-Tabs
And Then : Awesome.Awesomeparts-Tabs.Listbox
Hi,
I want to create a datagrid control in WPF in which there is a button in the first cell of each row. Clicking this button will show RowDetailsTemplate or SubRow. My concern is How do i add a button which will show/Hide the RowDetailsTemplate ?????????
Any help will be greatly appreciated
Thanks