Tagged Questions
The attachedbehaviors tag has no wiki summary.
6
votes
1answer
3k views
When should I use FrameworkPropertyMetadata or UIPropertyMetadata over plain PropertyMetadata?
When looking at sample attached properties and behaviors, I've seen a mishmash of uses of FrameworkPropertyMetadata, UIPropertyMetadata and PropertyMetadata. Since they all form an inheritance ...
5
votes
2answers
384 views
Blend Behaviours - can you bind to their properties?
I am currently migrating a number of attached behaviours I have created to Blend Behaviours so that they support drag and drop within Expression Blend. I have noticed that authors of Blend behaviours ...
5
votes
2answers
474 views
How to create an Attached Behavior for automatic scrolling of a FlowDocumentScrollViewer
My goal is to create a reusable Attached Behavior for a FlowDocumentScrollViewer, so that the viewer automaticly scrolls to the end whenever the FlowDocument has been updated (appended).
Problems ...
5
votes
2answers
930 views
unit test an attached behavior wpf
I am still grokking attached behaviors in general, and am at a loss to see how to write a unit test for one.
I pasted some code below from Sacha Barber's Cinch framework that allows a window to be ...
5
votes
4answers
10k views
How do you handle a ComboBox SelectionChanged in MVVM?
For those doing pure MVVM, how do you handle a ComboBox SelectionChanged event without reverting to code behind?
I tried e.g. AttachedBehaviors but Event="SelectedChanged" is not supported:
...
3
votes
1answer
798 views
Automatically calling OnDetaching() for Silverlight Behaviors
I am using several Blend behaviors and triggers on a silverlight control. I am wondering if there is any mechanism for automatically detaching or ensuring that OnDetaching() is called for a behavior ...
3
votes
2answers
880 views
Silverlight ComboBox Attached Behavior
I am trying to create an attached behavior that can be applied to a Silverlight ComboBox.
My behavior is this:
using System.Windows.Controls;
using System.Windows;
using ...
3
votes
2answers
643 views
Reducing boilerplate code in MVVM WPF app for attached properties, commands, etc?
I'm working on a WPF MVVM application. The thing that I'm noticing is that I have to write an inordinate amount of boilerplate code just to declare commands (through DelegateCommands from the WPF ...
2
votes
1answer
69 views
Public vs Private AttachedProperties
Where does it make sense to have AttachedProperties as private vs public?
Usually it is define as (example):
public static readonly DependencyProperty CommandProperty =
...
2
votes
1answer
156 views
Attached behaviors and styles
I use an attached behavior that allows a DoubleClick event to be wired to a command in a view model, as in the binding below:
<ListBox Style="{StaticResource MasterListBoxStyle}"
...
2
votes
1answer
558 views
Attached behavior binding to element in controltemplate
I am adding a attached behaviour to a slider which will cause it to scroll some content when the thumb is dragged and held over a specific region. (Can't use a straightforward IsMouseOver trigger as ...
2
votes
1answer
260 views
Binding Attached Behaviour from code
I am using a custom default button attached behaviour (as defined here: http://stackoverflow.com/questions/2683891).
I am able to bind this successfully in XAML, but in a nested user control, in code ...
2
votes
1answer
1k views
Silverlight MouseDragElementBehavior. How to rearrange items after drag and drop?
I have stack panel with custom controls in it. User can add or remove the items.
I have attached MouseDragElementBehavior to each item. So now user can move them within the stack panel.
However the ...
2
votes
1answer
159 views
How to expose xaml properties?
I created a ComboBox subclass and added my functionality.
Now I want to expose external properties of the TextBox for example:
<a:MyComboBox SpellCheck.IsEnabled="True" ...
2
votes
2answers
2k views
Custom attached events in WPF
I might be getting the terminology wrong here, but I think I'm trying to create an attached event.
In the Surface SDK, you can do things like:
<Grid Background="{StaticResource WindowBackground}" ...
1
vote
1answer
44 views
Does the .NET framework have any attached properties or attached behaviors built into it?
I'm basically curious if any Microsoft code (.NET Framework) has any files that show attached properties and attached behaviors. I'm aware of numerous examples out there on the internet, but I'm more ...
1
vote
1answer
199 views
SL4/MVVM: Handle MouseDragElementBehavior.Dragging event with void Foo() in VM
I am trying to handle the MouseDragElementBehavior.Dragging event on a control I have. See here for background on why I want to do this.
I am having trouble wiring up this event. From the XAML you ...
1
vote
1answer
53 views
How to find if Mouse is already Captured
I created a usercontrol which contains a Canvas and a Button on the Canvas. To be able to move the button over the canvas I attached a DragBehavior shown below:
class DragOverCanvasBehavior : ...
1
vote
1answer
107 views
WPF AttachedCommandsBehavior in VB.NET
Can anybody give me an example how to implement AttachedCommands?
There are some examples in C# and I think it is very similar to C# but I have problems to translate the code to VB.NET.
At the ...
1
vote
2answers
253 views
What is the best way to handel click-events in MVVM?
What is the best way to handel click-events in MVVM? Are there a best way?
I have found two solutions:
with a relaycommand:
RelayCommand buttonAddCategory_Click;
public ICommand ...
1
vote
1answer
356 views
WPF - Resizing chromeless windows using attached behaviors,..Any suggestions?
Who fancies a challenge?
I'm currently working on the ControlTemplate for a chromeless Window which will be a part of a reusable theme assembly. I want the behaviors for moving, closing, minimizing ...
1
vote
2answers
329 views
DependencyProperty of Type Delegate
I have created an attached behavior that is used to execute a Delegate of type Func<bool> when the behavior is invoked. Below is the dependancy property definition.
public static readonly ...
0
votes
1answer
43 views
Event unsubscription via anonymous delegate
I am using Resharper 5.1 code analysis many a times i get a comment from resharper as
"Event unsubscription via anonymous delegate"
#Part of Code
if (((bool)e.NewValue))
{
...
0
votes
1answer
80 views
Binding in multiple views to ObservableCollection of selected items (MVVM, SL5)
I'm using MVVM with Silverlight 5. What I want to achieve is to select items in a ListBox in one view (e.g. ListView.xaml) and display the selected items in a ListBox in another view (e.g. ...
0
votes
1answer
154 views
drupal 7 attach behaviors to ajax content
So... I load a node form via ajax into another page. I try to attach behaviors like this:
Drupal.attachBehaviors($('.ajax-form-container'));
The problem is that nothing happens. The form has no ...
0
votes
0answers
45 views
can i use silverlight attached Behavior on DataGridTemplateColumn to control column width?
i have a datagrid with column definitions and i want to create a silverlight behavior to attach it to some columns. The behavior must control the width of the columns. I have many datagrids in the ...
0
votes
0answers
68 views
drupal ajax page with ajax view does not work
I have a page which loads in a custom way via jQuery .ajax and it has a view with ajax enabled content. The pager's href is altered when the content gets loaded through ajax and it does not work ...
0
votes
2answers
63 views
SL4: need to register for a move (or redraw) event on an Item in an ItemsControl
Not finding a move event or redraw event in the FrameworkElement class. And Google not helping either. So...
I have a custom ItemsControl populated by an observable collection in the VM. The ...
0
votes
1answer
279 views
Attached Command Behavior and LostFocus
I am using the method described here to attach a ViewModel ICommand to the LostFocus event of a Combobox, by setting CommandBehavior.RoutedEventName="LostFocus". I expected the event to fire at the ...
0
votes
1answer
81 views
Binding - UpdateSource when using a behaviour
I have a behaviour I've written that binds to my ViewModel to get a particular value. I want to explicitly update the source when the behaviour's Associated object loses focus, however I cannot access ...
0
votes
0answers
21 views
How to build a printable datagrid behavior
Hello I am currently working on a project that requires printing reports, I would like to generate reports from any itemscontrol like a grid or list view and specify the columns I wish to print,(by ...
0
votes
1answer
105 views
Silverlight: VisualStateManager.GetVisualStateGroups doesn't, How can I get them?
I've tried using VisualStateManager.GetVisualStateGroups in the OnAttached override of my custom behavior, as well as in an event handler added to AssociatedObject.Loaded event in that behavior. Both ...
0
votes
2answers
107 views
Lambda expression delegates in behavior
I have an attached behavior that used on a listbox, it should automatically select the first element in the list, if the list contains only one element.
The only way that I have found to hook the ...
0
votes
0answers
120 views
Silverlight 4: Change the visual state of an Element when attaching a Behavior
first of all: i'm new to Silverlight 4
I made myself a behavior for special TextBoxes in my application (in my case, a dialog with some entries to choose should open when i press Shift+F4). This ...
0
votes
1answer
392 views
Using MouseDragElementBehavior with an ItemsControl and Canvas
I am currently having a problem using the MouseDragElementsBehavior from the Blend SDK when using a ItemsControl and a Custom Canvas. My custom canvas simply adds or removes the MouseDragElement from ...
0
votes
0answers
135 views
Strange StackOverflowException in custom silverlight behavior for MVVM
I was working on a custom Expression Blend behavior to help binding my ViewModel to a Microsoft.Maps.MapControl.Map through an IMapViewService interface.
My interface is simple enough
public ...
0
votes
0answers
311 views
Force Drupal to attach Drupal behavior to new ajaxed content [only Drupal.attachBehaviors() is not working the right way]
I was doing lot of posts on drupal.org about this topic, but unfortunately in the wrong context.
Drupal Post
Drupal post
I think that is not the problem, so i try it with a different approach, and ...
0
votes
0answers
194 views
Silverlight MVVM compatible Custom Blend Behavior with multiple events
I'm using the MVVM Light Toolkit & I need to fire off several different two way events at various stages in a Custom Blend Behavior that's compatible with MVVM in Silverlight. I've tried standard ...
0
votes
2answers
917 views
TextBox.TextChanged Event/ComboBox.TextInput Event through MVVM-commanding
I'm finding for last 2 days about the attached-command-behaviour firing TextBox.TextChanged Event or ComboBox.TextInput Event through Commanding. But, I can't get any proper solution for this.
One of ...
0
votes
1answer
313 views
Cannot bind ObjectContext from DataContext to custom Attached Property
I have attached property
public static ObjectContext GetObjectContext(DataGrid obj)
{
return (ObjectContext)obj.GetValue(ObjectContextProperty);
}
public static void ...
0
votes
1answer
182 views
How to use the DragMoveBehaviorElement (drag) on a button in blend?
i'm trying to make a draggable button in blend.
using the dragmovebehaviorelement on a button does nothing, and i think this is because a button already uses the LeftMouseButon_down event.
using this ...
0
votes
1answer
263 views
Wpf AttachedBehavior losing base textbox functionalty when using it
I have a attached behavior issue. When I attach the behavior to my textbox I lose all my base functionality like the Max length? Here is how I am attaching it in my xaml. When I take off the ...
0
votes
3answers
81 views
WPF - Dependency Properties Error
I'm working on a WPF project, and my intention is to make two specific RadioButtons alter properties of another specified Component. But for now, i'm just trying to store a String inside the ...
0
votes
1answer
237 views
WPF - Styles with Custom Properties
I'm developing a document number checking on my application and I wrote an attached behavior to textbox to check the text. Here's the behavior code:
public class CPFTextBehavior : ...
0
votes
0answers
409 views
WPF - attached behavior to capture MouseEnter on Image in TreeviewITem
Could I have, please, a little code-sample of WPF "attached behavior"?
I explain my problem:
I've done my TreeView all with XAML but now I'd like to manage an event with code-behind. The ...
0
votes
2answers
1k views
Attached Property and Binding
I'm creating an attached behavior in order to set a regular property of a class:
public class LookupHelper
{
public static readonly DependencyProperty ItemsSourceProperty = ...
0
votes
2answers
560 views
WPF - Random hanging with file browser attached behaviour
I have an attached behavior defined thusly,..
public static class FileBrowserBehaviour
{
public static bool GetBrowsesOnClick(DependencyObject obj)
{
return ...
0
votes
2answers
2k views
How can I attach two attached behaviors to one XAML element?
I've implemented the attached command behavior pattern found here and it works well to allow e.g. a Border to have a left- or right-click event that fires in the ViewModel:
XAML:
<Border ...
0
votes
2answers
1k views
How to use AttachedCommandBehavior in a new project?
I've downloaded this AttachedCommandProject and ran it and it works well, enables me to e.g. put a MouseDown command on a Border element and handle that with a command in my ViewModel.
Now I would ...