Search Results

0
votes
2answers
153 views

WPF Hyperlink Child

Hi, I have a WPF Hyperlink that I am able to click and get it's NavigateUri property just fine. However, I want to be able to bundle some additional information with the Hyperlink so I can process …
0
votes
4answers
301 views

WPF Sort ListView by Date

Hi. I have a WPF ListView with a column that has dates in it. I would like a way to custom sort the dates (by date value, rather than string value). Is there a way to do this? Right now I am us …
1
vote
1answer
199 views

WPF TextBox Not Accepting Delete Key

Hello. I have a WPF application embedded in a Microsoft Outlook 2003 window. Everything is working fine, except none of my TextBox controls accept the backspace key. I've done some research, and …
1
vote
1answer
79 views

Parent window intercepting accelerator

Hi, I have a window that I've placed into another application. In this case, I have a custom application that I injected into a Outlook 2003 Window. I'm having an issue where the parent wi …
0
votes
1answer
219 views

WPF ListView not rendering templates

Hello, I have a ListView that I am populating with items from an ObservableCollection. All was working well until I decided to add a second list view to filter some of the items. What I ha …
0
votes
1answer
129 views

Alternatives to NativeWindow for subclassing

I am subclassing a Win32 window in managed code using NativeWindow. However, I'm encountering a bug in either my code or with NativeWindow that throws an exception when the parent is closed. The …
0
votes
2answers
269 views

WPF Popup ZOrder

Hi, I am using a WPF Popup, but it popups up above every single window on my desktop, even when my application is minimized. How can I make it stay only on the window it originated? The same thin …
0
votes
2answers
287 views

WPF Trigger on TextBlock Inlines

Hi. I have a TextBlock that I want to display a user name, and email like this: Firstname Lastname (Email) However, I don't want to put the (Email) part in …
0
votes
1answer
162 views

Detect when WPF listview scrollbar is at the bottom?

Is there a way to detect if the scrollbar from the ScrollViewer in a ListView has reached the bottom of the virtual scroll space? I would like to detect this to fetch more items from the server to …
0
votes

WPF TextBox Not Accepting Delete Key

I found a way to get around this. I extended Outlook's WndProc and listened for the WM_COMMAND. Whenever it came up I tell my WPF UserControl system to send the backspace key to the currently key …
0
votes

WPF ListView not rendering templates

I'm stupid. It seems the Width="Auto" on the column with my main data template isn't spreading all the way over. Setting Width=100 showed the part. Maybe it's the parent not spreading all the wa …
0
votes

Detect when WPF listview scrollbar is at the bottom?

I figured it out. It seems I should have been getting events from the ScrollBar (<ListView ScrollBar.Scroll="currentTagNotContactsList_Scroll" in XAML) itself, rather than the view …