The uielement tag has no wiki summary.
9
votes
2answers
2k views
Snow Leopard & LSUIElement -> application not activating properly, window not “active” despite being “key”
I'm running into a few problem with a background application that uses LSUIElement=1 to hide its dock item, menu bar and prevent it from appearing in the Command-Tab application switcher.
It seems to ...
7
votes
6answers
2k views
WPF UI element naming conventions
Although Hungarian notation is considered bad practice nowadays, it is still quite common to encode the type in the name of user interface elements, either by using a prefix (lblTitle, txtFirstName, ...
3
votes
3answers
871 views
Get element position after transform
I have a UIElement that has various transformations performed on it (scale and translate).
Is there a way to get the UIElement's position after transformation? I tried GetValue(Canvas.TopProperty) ...
3
votes
1answer
578 views
How can you get the parent of a UIElement?
Ok... I know that FrameworkElement, which is a direct subclass of UIElement, has a Parent property, but Panels have children of type UIElement, not FrameworkElement (Children is of type ...
3
votes
2answers
2k views
How to center an element in wpf canvas
How can I center an element in wpf canvas using attached properties? Please help.
3
votes
1answer
717 views
2
votes
1answer
59 views
How can i pop up NSMenu at mouse cursor position?
I want to react on hot key press by displaying NSMenu at mouse cursor position.
My application is UIElement and doesn't have its own window.
I know there is method of NSMenu :
...
2
votes
3answers
615 views
wpf: How can I make UIElement support binding?
DependencyProperties on UIElements do not support databinding (you get something like:
"Cannot find governing
FrameworkElement..")
. If you try, you get an error because WPF can not resolve ...
2
votes
1answer
135 views
Sharing the same FrameworkElement and DrawingVisuals instance across various Grids (WPF .net 4 )
I am doing an application where I draw using PathFigure, LineSegment, ... stored as DrawingVisuals in a FrameworkElement.
I need to show the same drawing in 2 different UI elements (Grids or Panels, ...
2
votes
3answers
397 views
Find the applied ScaleTransform on a Control or UIElement?
I have a control sitting somewhere in my Window. At the root of this Window is a grid named MainGrid. I have a ScaleTransform applied on MainGrid's LayoutTransform that I use to zoom in on all the ...
2
votes
1answer
350 views
Select a WPF UIElement in a FlowDocument
I have a FlowDocument (inside a RichTextBox) that contains UIElement controls such as CheckBoxes. I need the user to be able to click on the CheckBox to select it to change the controls properties ...
2
votes
1answer
444 views
Commit Focused Element in Silverlight
I need code that will force Silverlight to commit the focused element (in my case a TextBox, but it could be anything). In WPF I use
public static void CommitFocusedElement() {
...
2
votes
1answer
520 views
WPF Delay Refresh of UI Elements in ItemsControl
The short question is - how can I prevent (delay) a bound UI element from refreshing until I want it to?
The longer explanation:
I have a process that adds a number of items to an ItemsControl, and ...
2
votes
1answer
536 views
UIelement position relative to Window
In WPF, I want to get the corner location of a TabControl in my code, so I can set a ToolWindow's location accordingly when shown.
How do I get the location of a given UIElement ?
buildingInfoWindow ...
1
vote
0answers
23 views
RichTextBox crashed when insert UIElement into it in WPF
everyone
Recently, I got a strange error:
When I insert UIElement into RichTextBox (such as a Button in BlockUIContainer)。I always got an InvalidOperationException said "This TextNavigator No ...
1
vote
1answer
62 views
How to make <UIElement> interactable or click-able in WPF UI
This is my first day to design UI using WPF. I have looked up MSDN official document of Flow Document and found that I can place an UI control inside a RichTextBox. I did put a button in but found ...
1
vote
1answer
120 views
UIElement vs FrameworkElement
I am unclear on when you would use a UIElement as opposed to a FrameworkElement, and whey is there a FrameworkElement class at at all. Essentially, what is the extra functionality that a ...
1
vote
3answers
282 views
Refresh WPF-Control by code
I am trying to disable a button for denying a spam click on this button.
I used a Refresh delegate to Render invoke the control but it appears as enabled.
The connect()-Methode is taking about 4 ...
1
vote
2answers
66 views
WPF - How to get my Panel to see if a DependencyProperty is set on my child when they are UIElements?
Basically, during my MeasureOverride I want to check to see if my child element has a certain property set on it regardless of what type of item it is.
public override Size MeasureOverride(Size ...
1
vote
2answers
636 views
Render WPF control on top of WindowsFormsHost
I know that default WPF behaviour is to render WPF controls and then on top render WinForms, but are there any way to render WPF on top of WindowsFormsHost?
Edit: I have found a temp hack as well. ...
1
vote
1answer
128 views
popUpMenuPositioningItem:atLocation:inView: hangs when switching to another application
I am working on a dockless application (LSUIElement true). The application pops up a menu when the user clicks on the corresponding NSStatusItem, or when a keyboard shortcut is used.
My problem is ...
1
vote
1answer
269 views
Silverlight drag n drop element hides when outside of ListBox
I implemented a drag and drop of an image from a Grid to another Grid using built-in MouseDragElementBehavior class. Then I needed to use a bit more complex layout for the source items so used ListBox ...
1
vote
1answer
358 views
WPF: DataBinding a PointCollection for a custom UIElement
I'm trying to make a WPF UI Element that does some special rendering.
The problem is that I can't get databinding to work for a PointCollection. Inside OnRender() of the GraphElement, the Points ...
1
vote
2answers
171 views
Is there a way to make controls transparent to mouse events in WPF?
Is there a way that I can let mouse events pass through to controls behind?
1
vote
2answers
370 views
Move UIElement in Visual Tree without recalculating layout
We have a WPF application (.Net 4.0) using a Docking Control (Actipro). We can dock out the docking windows. In that case, a "real" Window is created and the content is assigned to that window.
Of ...
1
vote
2answers
258 views
Problem sending UIElements via DependencyProperty in wpf
I have a usercontrol with a dependencyproperty that takes oen UIElement. So fare so good, the problem is I can not find the element's children.
I think the problem is my lack of knowledge, could ...
1
vote
1answer
239 views
Mac OS - get UI element information at a coordinate in screen if any
this is my first post, wish your help.
In Mac OS (10.5 or 10.6), I want to find the element at the specified coordinate in screen.
If you have ever used UIElementInspector, you will konw exactly ...
1
vote
2answers
265 views
Casting error for UIElement on runtime
I get runtime error when I do this...
I have this class...
public abstract class AnnObject : DependencyObject
and when I do this it compiles fine, but throws a runtime error...
AnnObject aa;
var ...
1
vote
1answer
2k views
WPF FrameworkElement Parent and Moving a UIElement
I'm trying to move a control from one parent to another (if this will work I'm not quite sure). I can get a hold of the control that I want to move. Here is my code:
public void MoveElement(UIElement ...
1
vote
1answer
355 views
How can I get the position of a child element relative to a parent?
If a have a Canvas parent, it is very easy to get the position of a child:
Canvas.GetLeft/Top (child)
But how can I get the position of a child for other types of parents?
1
vote
1answer
90 views
How to dump all (X, Y) positions of UIElements in a WPF Grid
I would like to know how to iterate through all the elements in a WPF Grid, and then access the absolute positioning values (X, Y) for all of these UIElements.
1
vote
1answer
119 views
How can I add a UIElement to a Windows Forms application?
I have a WPF custom control I'd like to add to a Windows Forms application.
So I added a reference to the WPF assembly, created an ElementHost and set the Child property in code.
Is there a way to do ...
0
votes
1answer
32 views
Smoothly resize an UIElement
I have a set of Ellipses on my Canvas.
Over MouseEnter event on each of the ellipses, I would like to resize the element so as to give a magnifying look and feel.
To make it more attractive, I want ...
0
votes
0answers
54 views
Can I tell in code-behind if a popup has been moved relative to its placement target?
I'm working on a WPF project where I have a grid of thumbnails (each thumbnail is a SurfaceButton), and clicking on each thumbnail shows its own popup menu. The popup menu in each case has its ...
0
votes
1answer
18 views
Canvas.GetTop not updated after Element drag
I have a Rectangle nested within a Canvas. The rectangle has a MouseDragElementBehavior attached to it, so it can move freely in the canvas.
I need to calculate the position of the rectangle after ...
0
votes
0answers
39 views
Copy snapshot of a WP UI Element containing Scrollbar
I have a WPF Uniform Grid containing my custom chart control to be displayed in the form of a matrix. For instance, the grid would display chart controls in 5 x 10 or user defined rows x columns ...
0
votes
2answers
45 views
Custom event for wpf UIElement
Is is possible to fire event when a UIElement's location is changed in wpf? We can fire location changed event in case of Windows but can we have a custom event which fires when UIElements location is ...
0
votes
1answer
63 views
Make Cocoa app stay on top of fullscreen apps
I'm working on an app that has a status menu and from that menu user can open the app's main window. I want the ability to open this window on top of the full screen apps. The following code works ...
0
votes
1answer
63 views
CKEditor how can I execute OnChange of a sibling UIElement
I have a custom dialog with a button and an input on it. On the click event of the button I want to trigger the OnChange function of the input. I don't know how to get the sibling UIElement of the ...
0
votes
1answer
86 views
UI freeze when instantiating multiple images (silverlight wp7)
I'm having a problem with the UI freezing while trying to dynamically add lots of images to a canvas.
what I'm doing is that when a button is pressed a lot of images should appear on the screen one ...
0
votes
1answer
54 views
Bind UIElement to viewModel
I have a simple view containing a richtextbox and a button. I want to enter text into my RTB and on clicking my button have viewmodel print the RTB.
I have my command set up from the views print ...
0
votes
1answer
69 views
How can I get geometry information in C# from an XAML object?
given the following XAML code:
<Canvas Name="MainView">
<Canvas Name="TriangleElement" Width="50" Height="50" Canvas.Left="110" Canvas.Top="100">
...
0
votes
0answers
32 views
Hosting visuals in a UIElement
Do we always have to host visuals in a custom derived class from UIElement (where we have to override VisualChildrenCount/GetVisualChild), can't we somehow add them to an existing UIElement (or ...
0
votes
1answer
115 views
UIElement.InvalidateVisual on Windows Phone 7
I've made a custom UIElement that need to update its appearance when certain DependencyProperties are changed. But I can't find the InvalidateVisual-method on UIElement-class. Why has it been removed ...
0
votes
1answer
279 views
UIElement.Projection only in Silverlight and not in WPF?
I downloaded a sample code from here:
http://gallery.expression.microsoft.com/ShowHideWithFlip
Now my problem is that i'm using WPF and the guy is using Silverlight..
I thought they are both using ...
0
votes
1answer
71 views
WPF - Adding ScatterViewItem.Content to a StackPanel as UIElement
I'm attempting to make a application where you can drag ScatterViewItems next to each other, and the items will dock together, so that you can move them around as a single item.
Right now I'm trying ...
0
votes
2answers
38 views
Is it possible to apply a storyboard to an element that is created after application start?
Basically, Ive got a load of polygons on a canvas (the number of which is determined by the user clicking on the canvas for every polygon he/she wants). I then want to be able to animate these ...
0
votes
1answer
457 views
Adding UIElement with AddLogicalChild, AddVisualChild in WPF
I created a custom version of canvas by simply extending/inheriting from the Panel.
When I want to draw or render something on it, I simply create a DrawingVisual, draw the desired graphics and call ...
0
votes
2answers
390 views
UIELement vs Frameworkelement in WPF/Silverlight
When do I derive from UIElement and FrameworkElement considering FrameworkElement inherits UIElement. Can anyone give real life examples?.
0
votes
1answer
383 views
How to find out wherer a mouse button is pressed when mouse pointer is leaving a UIElement
I've been working on a GUI in WPF which I'm fairly new to, having only used Windows Forms up until now. So far, my GUI is very simple: it contains two rectangles, each of which drops a shadow. The ...