New Post: (very) Basic Databinding question
You shouldn't really create a second copy of the window that you already have. You should instead reference the window by name.<Window x:Name="MyWindow"> <Grid DataContext="{Binding...
View ArticleNew Post: (very) Basic Databinding question
Sooooooo.... first of all, I would like to sincerely express my gratitude for taking the time to help me so much with this! You are correct - I am a COMPLETE novice at WPF. Those are great resources...
View ArticleNew Post: (very) Basic Databinding question
I have another question. After this last post, I changed my design around a lot and got the datagrid to show up initially with some fake data that I put in when I initialized it. However, whenever I...
View ArticleNew Post: (very) Basic Databinding question
I will refer you back to my second reply above. It's because you are creating multiple instances rather than sharing instances.
View ArticleNew Post: Windows 10 - cannot locate resource...
I have a project using version 2.5 and migrate the OS to Windows 10 and VS 2015 . When I try to use the textbox controls, they do not appear in the design mode , but when I run the application they...
View ArticleNew Post: Binding of DataGrid Column Header
How to bind the DataGridControl Column Header with the current item? I tried to use DataGridItemPropertyBase, Title property but not support binding! Any suggestion? Enrico
View ArticleNew Post: Extended WPF Toolkit Zoombox NullReferenceException
I'm trying to use the Zoombox for the first time and somewhere after InitializeComponent I receive the following exception. Not sure what to do? System.NullReferenceException was unhandled...
View ArticleNew Post: Extended WPF Toolkit Zoombox NullReferenceException
Hi, This could already be fixed. What version of the Toolkit are you using ? Can you send a code snippet or a sample of your code-XAML ? Thanks.
View ArticleNew Post: Extended WPF Toolkit Zoombox NullReferenceException
Version 2.5.0<Window x:Class="MagnifyingAdornerSample.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"...
View ArticleNew Post: ZoomBox - Scrollbars
Hi,How can I know when the ZoomBox View is scrolled.I need it because I need to redraw the objects that are current visible. I need to redraw in order to maintain the line width of the shapes...
View ArticleNew Post: Extended WPF Toolkit Zoombox NullReferenceException
Hi, This is already fixed in v2.6. In the meantime, go in file Xceed.Wpf.Toolkit/ZoomBox/ZoomBox.cs, in method "SetScrollBars()" and add the following check at the beginning of this method :if(...
View ArticleNew Post: ZoomBox - Scrollbars
Hi, So you want to know when the user scrolls the scrollbars ? We could add an event on each scrollbars movement. Is that correct ? Thanks.
View ArticleNew Post: ZoomBox - Scrollbars
Hi,Yes exactly I need to get an event when the scroll bars are moved.Can you please show me how to add these events to the scollbars.Thanks a lotMary
View ArticleNew Post: ZoomBox - Scrollbars
Hi A quick question please when Zoombox changes the Scale the Viewport is not updated.I need to redraw when the scale is changed and I use the Viewport to check which shapes are displayed and which are...
View ArticleNew Post: ZoomBox - Scrollbars
Hi, Issue https://wpftoolkit.codeplex.com/workitem/22085 has been created, In the meantime, you can add the following event in th Zoombox.cs file :public event EventHandler<ScrollEventArgs>...
View ArticleNew Post: DateTimePicker - enter date as numbers only
Is it possible to set up the DateTimePicker so a user could enter a date like "08/15/1995" without having to type the slashes? i.e., just type 08151995 and the slashes are inserted automatically...
View ArticleNew Post: DateTimePicker - enter date as numbers only
Hi, The idea is to change the "Text" value. Here's a start :<local:MyDateTimePicker Format="ShortDate" />public class MyDateTimePicker : DateTimePicker { private bool _isChangingText = false;...
View ArticleNew Post: Parallel Rendering/Avalondock
I'm using Avalondock to display multiple documents with different content. The first document gets data via background thread and updates the view. The second one only shows some fixed datas. My...
View ArticleNew Post: RenderTargetBitmap and floating AvalonDock windows
I am trying to write code that generates an image of all open windows in the application. If the window is an AvalonDock floating window, calling RenderTargetBitmap.Render on the window produces an...
View Article