|
|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
# b3 _4 ^/ U. a: \* ]$ Q
, s5 ~& v! y# _0 y" uNX二次开发源码分享:自定义yes或者no的确认对话框 q |7 ^9 f# l# {1 Q
- e4 k/ `5 l1 \ |' g; ?) i5 Lstatic bool AskYesOrNo(string title, string message)! ]1 M& K: s' J% E) e6 }; a+ U
{1 m; q/ V m- p
string[] messages = { message };
( |( p0 ?! P4 ~4 N! F# v4 |# ? UFUi.MessageButtons buttons = default(UFUi.MessageButtons);
: [2 D# V- l6 L R5 h) n buttons.button1 = true;2 Q# @: Y% ?( K9 b- V
buttons.button2 = false;
8 F6 F/ q( V- @ {( e buttons.button3 = true;1 q( t/ c, s4 V' l3 q% p, |9 u
buttons.label1 = "Yes";
/ I- B7 K4 f5 E+ Q. ` buttons.label2 = null;# E& W7 n' c& u0 t X
buttons.label3 = "No";
$ y( u) x& g- M1 I. c" y5 h buttons.response1 = 1;
" W9 E6 p/ K- w/ L+ R5 V& M' F buttons.response2 = 0;4 i3 z# T5 X# ~1 d8 j+ D7 @$ a
buttons.response3 = 2;* y; B1 V: E9 H4 ?8 B
int resp = 0;
; L9 i8 X. h5 q1 M! u! v; i3 J& R9 h1 n S ~8 ~
theUFSession.Ui.LockUGAccess(UFConstants.UF_UI_FROM_CUSTOM);- r2 N+ f0 D3 d
theUFSession.Ui.MessageDialog(title, UiMessageDialogType.UiMessageQuestion,
4 Y/ B" \7 P4 Q8 e: |8 Q/ _ messages, 1, true, ref buttons, out resp);& ]+ m& M" e5 r# A+ T5 V6 X% Y% _
theUFSession.Ui.UnlockUgAccess(UFConstants.UF_UI_FROM_CUSTOM);8 d. h4 }0 M5 j
7 G& }2 P+ s/ Y% W if (resp == 1)/ B% o3 \9 ^8 I! q, V t3 }. c, w
return true; @! ]* [7 ^ H3 X( x! z5 d
else3 o5 ^1 A$ C+ p; s6 i2 c
return false;' S/ Z0 t5 @' B; x+ F# {8 i5 Z
}
% h% |( r; U4 |: E8 d+ \& p$ q) R" C6 {/ U% D z1 ]5 u
, _) r- G. {6 x/ [
|
|