CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Eric H

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    14,883

    Re: Windows Messages in WPF

    After a bit more searching, I've found a solution:

    // Handler must be added once the window is loaded
    void Main_Loaded(object sender, RoutedEventArgs e)
    {
    ...
  2. Replies
    1
    Views
    14,883

    [RESOLVED] Windows Messages in WPF

    I have a WPF app that I want to be able to handle certain Windows Messages that other apps send to it. In Windows Forms, I could overload the OnNotifyMessage method in my form and handle arbitrary...
  3. Re: Change which item resizes in DockPanel

    Solved.

    The solution is to simply add the controls to the DockPanel in the reverse order. Using the previous example, it would be like this:

    <DockPanel>
    <Button Name="button2"...
  4. [RESOLVED] Change which item resizes in DockPanel

    I have a DockPanel with two items in it, one docked to the left, and one docked to the right. By default, when the DockPanel is resized, the item on the right resizes to fill the space, whereas the...
  5. Replies
    0
    Views
    667

    Covariant Return Types with Generics

    I want to implement a generic interval class that stores two IComparable objects corresponding to the bottom and top of the interval. However, I want to be able to pool different types of Intervals...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured