Advanced Forum Search Results
-
It should be a property to disable this behavior. White space shouldn't be discriminated! :)
-
This has also affected me. According to the docs:
"Occurs when a FrameworkElement has completed layout passes, has rendered, and is ready for interaction."
Nay! I have a Popup control that contains an ItemList. I have attached a handler to the ItemList.Loaded event.. and it seems that every so often (perhaps 1/10 of the time), I ...
-
As the subject states, controls whose IsEnabled property is set to false do not respond to configured ToolTip invocation. This worked in Beta2, and we need this feature as a way to inform a user why a control is disabled.
Sample chunk:
<Grid x:Name="LayoutRoot" Background="White">
<Button ...
-
I can confirm the same behavior. I also scanned through the source with Reflector and it seems that the code that is responsible for handling the wrapping in the TextBox is native code, so it's hard to tell what changed. I concur. The bug is that for the purposes of wrapping in a TextBox, the space character is ignored. I feel that it ...
-
I can confirm that this is an issue for me as well. I have a Grid in Canvas Layout mode that contains a few text blocks. When their width is auto and the grid is set to "UseLayoutRounding" == true, the width of the text blocks don't properly adjust to the proper width and cause unnecessary wrapping. Setting ...
-
Good morning! This solution has served me well, but I'm wondering if the RTM version has a more convenient way to get at the visible rows.
Best regards,
-sean
-
That seems to work for getting the TemplateColumn EditingContent during the CellChanged event, but I'm trying to get the content before the user can begin editing. There seems to be an inherant limitation with the grid and how data binding works that prevents me from hooking in to the CellEditingContent before the user begins editing. ...
-
Hmm.. this works:
public partial class Page : UserControl
{
public ObservableCollection<string> inventory;
public Page()
...
-
Reverse the order of InitializeComponent and the Resources.Add, so that:
Resources.Add("inventory", inventory);
InitializeComponent();
If the resource hasn't been added before data binding occurs (during InitializeComponent), the grid ...
-
I am also looking. I have a need to step through some of the code to debug some issues. Anyone know if the source will be released? (Reflector does a good job, but I need something I can step through with VS)
Cheers!
-Sean