zoukankan      html  css  js  c++  java
  • WPF中获取Hwnd与窗体,Uid获取控件


    void MapControl_Loaded(object sender, RoutedEventArgs e)
            {
                this.OnApplyTemplate();
                CurrentMapChanged(new DependencyPropertyChangedEventArgs(MapControl.PropertyCurrentMap, "", ""));
    
                //
                Window parentWindow = Window.GetWindow(this);
                IntPtr handle = (new WindowInteropHelper(parentWindow)).Handle;
                Console.WriteLine("parentWindow WHnd: " + handle.ToInt32());
    
                HwndSource hwndSource = HwndSource.FromHwnd(handle);
                Visual visual = hwndSource.RootVisual;
    
                Window window = (Window)visual;
                Console.WriteLine("parentWindow WHnd: " + window.Title);
                //
                String mapUid = Guid.NewGuid().ToString();
                this.Uid = mapUid;
                //
                Console.WriteLine("this control uid: " + this.Uid);
                UIElement elem = this.FindUIElementByUid(window, mapUid);
                if(elem != null)
                {
                    Console.WriteLine("this control uid: " + elem.Uid);
                }
                
    
            }
    
    
            private UIElement FindUIElementByUid(DependencyObject parent, string uid)
            {
                int count = VisualTreeHelper.GetChildrenCount(parent);
                for (int i = 0; i < count; i++)
                {
                    UIElement el = VisualTreeHelper.GetChild(parent, i) as UIElement;
                    if (el == null) continue;
                    Console.WriteLine("el.Uid: " + el.Uid);
                    if (el.Uid == uid) { return el; }
                    UIElement el1 = FindUIElementByUid(el, uid);
                    if (el1 != null) { return el1; }
                }
                //
                if (parent is ContentControl)
                {
                    UIElement content = (parent as ContentControl).Content as UIElement;
                    if (content != null)
                    {
                        Console.WriteLine("content.Uid: " + content.Uid);
                        if (content.Uid == uid) return content;
                        UIElement el1 = FindUIElementByUid(content, uid);
                        if (el1 != null) { return el1; }
                    }
                }
    
                return null;
            }


    -----------------------------------

  • 相关阅读:
    最短路变形题目 HDU多校7
    交换一个数字的任意两个位置,指定K次的最值
    七彩线段
    带限制的广搜 codeforces
    在一个矩阵内求一个最长上升子序列
    函数,以及三元运算符
    文件操作
    基础数据类型补充以及python编码
    深浅copy,is和==区别,集合,列表的操作
    字典和枚举
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/11121559.html
Copyright © 2011-2022 走看看