Joel B Fant

1,777
Reputation
92 views

Registered User

Name Joel B Fant
Member for 1 year
Seen Nov 23 at 1:20
Website
Location Indianapolis, IN
Age 28
Software Developer in Indianapolis, IN.
Oct
20
accepted WPF ListView animation by reorder of itens ?
Oct
16
comment Exposing C# struct to COM breaks for VB6 app
Interesting. I'll have to try setting such a test project up again and calling from a module in VB6. Unfortunately, that won't help in my app because the main interop object is a control which has to reside on the form (visual display). But, this is a very interesting bit of information.
Sep
26
awarded  Yearling
Sep
6
accepted MesureOverride to return more than the availableSize?
Sep
3
accepted Putting ListBox in ScrollViewer: mouse wheel does not work
Aug
23
comment Retaining font size when loading/saving RTF in WPF
Well, one thing I considered as a possibility was this: 1. Get XAML from the RichTextBox; 2. Modify it by adding 0.001 to each font size; 3. Use code (easily found) to convert XAML to RTF with the built-in classes. That way you're tweaking the input so your output is what you want.
Aug
23
accepted Retaining font size when loading/saving RTF in WPF
Aug
20
comment Why is the Button’s Background changing?
Re-templating is the only way, as far as I know.
Aug
20
answered Why is the Button’s Background changing?
Aug
20
comment Escape from DataContext
Another question: You are changing the DataContext by assigning an entirely new object to it, yes?
Aug
20
comment Escape from DataContext
I'm not experiencing any problem. What actually happens when you change the Window's DataContext? Are you changing TestTextBlock.Text programmatically ever?
Aug
20
revised Retaining font size when loading/saving RTF in WPF
added 3 characters in body
Aug
19
revised Creating SelectionBorder: Bit in the face by decimal rounding?
added 1 characters in body
Aug
19
answered Retaining font size when loading/saving RTF in WPF
Aug
19
comment Font size mismatch between RichTextBox and Word
WPF takes the qualified double (such as "14pt") and converts it a normal WPF pixel by multiplying by a factor. For points, the factor is 1.3333333 (sortof). It turns out that if you make it slightly larger (add 0.0001, multiply by 1.33333334 instead, set the FontSize to "14.001pt"), then it crosses a slight boundary and you get correct results when it parses the contents to RTF (which is what happens when you copy to the clipboard).
Aug
19
comment Font size mismatch between RichTextBox and Word
@divo: I don't know. There are other questions about RTF and font sizes around here on SO. RTF just seems to do what it wants. It may even have to do with what system dll is being used for the RTF.
Aug
19
accepted Font size mismatch between RichTextBox and Word
Aug
19
answered Font size mismatch between RichTextBox and Word
Aug
19
answered Creating SelectionBorder: Bit in the face by decimal rounding?
Aug
19
revised Putting ListBox in ScrollViewer: mouse wheel does not work
horizontal line
Aug
18
revised Reference nested type in ObjectDataProvider markup
added 9 characters in body; added 63 characters in body
Aug
18
answered Reference nested type in ObjectDataProvider markup
Aug
18
comment WPF — Anyone know why I can’t get this binding to reference?
As sixlettervariables notes in his answer, you don't need some of the bindings you're doing on the ListBox.
Aug
18
revised WPF — Anyone know why I can’t get this binding to reference?
added 570 characters in body
Aug
18
accepted WPF — Anyone know why I can’t get this binding to reference?
Aug
18
comment WPF — Anyone know why I can’t get this binding to reference?
And which one did you try? Assigning DataContext in code-behind?
Aug
18
comment WPF — Anyone know why I can’t get this binding to reference?
That means you have an exception occuring during Window's constructor, probably due to a bug in the XAML. Sending you more code won't help, seeing your code will. Did you put xmlns:sys inside the Window tag? Was there already a <Window.Resources> and now there are 2? There's a lot of things it could be.
Aug
18
revised WPF — Anyone know why I can’t get this binding to reference?
added 958 characters in body
Aug
18
revised WPF — Anyone know why I can’t get this binding to reference?
added 71 characters in body
Aug
18
comment WPF — Anyone know why I can’t get this binding to reference?
Your username shows as "unknown", you might want to edit your user profile.
Aug
18
answered WPF — Anyone know why I can’t get this binding to reference?
Aug
18
comment Bind TextBox to large string in WPF using MVVM
How large of a string? Is there any difference if you change Output to type string and return _output.ToString() instead of returning _output directly?
Aug
18
answered Putting ListBox in ScrollViewer: mouse wheel does not work
Aug
17
comment How to toggle a WPF Grid column visibility
With an automatic pick, the answerer only gets half the bounty, though. The automatic pick also only happens if the time on the bounty runs out and no answer has been chosen.
Aug
17
comment How to toggle a WPF Grid column visibility
You're welcome.
Aug
14
comment How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind?
Edited my answer with a bit more info, and that "10px" thing.
Aug
14
revised How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind?
added 988 characters in body; added 19 characters in body
Aug
14
revised How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind?
edited body
Aug
14
accepted How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind?
Aug
14
answered How do you set the FrameworkElement.Width property to the value of a qualifiedDouble, in the code-behind?
Aug
14
revised How to toggle a WPF Grid column visibility
typo and simple editing
Aug
14
comment Mixing C# & VB In The Same Project
@C Rogers: That situation is a different critter entirely. You can mix managed and unmanaged C++ in the same source file if you want. But it's still not the same as mixing VB.NET and C#.
Aug
14
accepted Mixing C# & VB In The Same Project
Aug
14
comment Mixing C# & VB In The Same Project
True, but I wouldn't condone it for the sole purpose of mixing languages.
Aug
14
revised Mixing C# & VB In The Same Project
added 316 characters in body
Aug
14
answered Mixing C# & VB In The Same Project
Aug
14
accepted How to dynamically change ConverterParameter (or any) property of a MultiBinding (or any other) resource at runtime?
Aug
13
answered WPF ToolBar Separator shrinks to nothing when inside a StackPanel
Aug
13
answered VirtualizingStackPanel + MVVM + multiple selection
Aug
13
comment wpf string formatting NOT numbers or dates
I must have accidentally removed my comment on the related question when I re-wrote my answer. I just updated.