소스 검색

111

样式分支
fyf 2 년 전
부모
커밋
cb3de8a0f0
2개의 변경된 파일17개의 추가작업 그리고 2개의 파일을 삭제
  1. +15
    -1
      BPASmartClient.SCADAControl/CustomerControls/TheImage.xaml.cs
  2. +2
    -1
      BeDesignerSCADA/Common/PropertyHelper.cs

+ 15
- 1
BPASmartClient.SCADAControl/CustomerControls/TheImage.xaml.cs 파일 보기

@@ -2,6 +2,7 @@
using BPASmartClient.SCADAControl;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Text;
@@ -33,6 +34,14 @@ namespace BPASmartClient.SCADAControl.CustomerControls
Width = 80;
Height = 80;
}
[Category("事件")]
public string ClickExec
{
get { return (string)GetValue(ClickExecProperty); }
set { SetValue(ClickExecProperty, value); }
}
public static readonly DependencyProperty ClickExecProperty =
DependencyProperty.Register("ClickExec", typeof(string), typeof(TheImage), new PropertyMetadata(string.Empty));
/// <summary>
/// 启动路径
/// </summary>
@@ -81,7 +90,12 @@ namespace BPASmartClient.SCADAControl.CustomerControls
Source = new BitmapImage(new Uri(ImageStartPath));
}
}
this.MouseLeftButtonDown += TheImage_MouseLeftButtonDown;
}

private void TheImage_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
Config.GetInstance().RunJsScipt(ClickExec);

}
}


+ 2
- 1
BeDesignerSCADA/Common/PropertyHelper.cs 파일 보기

@@ -20,7 +20,8 @@ namespace BeDesignerSCADA.Common
"IsChecked", "Value", "CurValue",
"StatusValue", "NumberValue", "Text",
"Direction","RefreshData",
"ChangedText","Content","SendText","LeftTogIsChecked","RightTogIsChecked"
"ChangedText","Content","SendText","LeftTogIsChecked","RightTogIsChecked",
"Visibility"
};
public static List<ControlName> GetCustomerControlProperty(List<FrameworkElement> selectItems)
{


불러오는 중...
취소
저장