本文整理汇总了C#中Indicator.SetPropertyBool方法的典型用法代码示例。如果您正苦于以下问题:C# Indicator.SetPropertyBool方法的具体用法?C# Indicator.SetPropertyBool怎么用?C# Indicator.SetPropertyBool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Indicator
的用法示例。
在下文中一共展示了Indicator.SetPropertyBool方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnChatViewMessageHighlighted
void OnChatViewMessageHighlighted(object sender,
MessageTextViewMessageHighlightedEventArgs e,
ChatView chatView)
{
Trace.Call(sender, e, chatView);
if (MainWindow.HasToplevelFocus || !IsEnabled) {
return;
}
Indicator indicator;
if (Indicators.TryGetValue(chatView, out indicator)) {
// update time of existing indicator
indicator.SetProperty(
"time",
e.Message.TimeStamp.ToLocalTime().ToString("s")
);
return;
}
indicator = new Indicator();
indicator.SetProperty("subtype", "im");
if (chatView is PersonChatView) {
indicator.SetProperty("icon", PersonChatIconBase64);
indicator.SetProperty("sender", chatView.Name);
}
if (chatView is GroupChatView) {
indicator.SetProperty("icon", GroupChatIconBase64);
var nick = GetNick(e.Message);
if (nick == null) {
indicator.SetProperty("sender", chatView.Name);
} else {
indicator.SetProperty("sender",
String.Format(
"{0} ({1})",
chatView.Name, nick
)
);
}
}
indicator.SetProperty(
"time",
e.Message.TimeStamp.ToLocalTime().ToString("s")
);
indicator.SetPropertyBool("draw-attention", true);
indicator.UserDisplay += delegate {
try {
MainWindow.PresentWithTime(
(uint) (DateTime.UtcNow - UnixEpoch).TotalSeconds
);
MainWindow.Notebook.CurrentChatView = chatView;
DisposeIndicator(chatView);
} catch (Exception ex) {
#if LOG4NET
Logger.Error("OnChatViewMessageHighlighted() " +
"indicator.UserDisplay threw exception", ex);
#endif
}
};
try {
indicator.Show();
} catch (Exception ex) {
#if LOG4NET
Logger.Error("OnChatViewMessageHighlighted() " +
"indicator.Show() thew exception", ex);
#endif
}
Indicators.Add(chatView, indicator);
}
示例2: ShowIndicator
void ShowIndicator(ChatView chatView, MessageModel msg)
{
Indicator indicator;
if (Indicators.TryGetValue(chatView, out indicator)) {
// update time of existing indicator
indicator.SetProperty(
"time",
msg.TimeStamp.ToLocalTime().ToString("s")
);
return;
}
indicator = new Indicator();
indicator.SetProperty("subtype", "im");
if (chatView is PersonChatView) {
indicator.SetProperty("icon", PersonChatIconBase64);
indicator.SetProperty("sender", chatView.Name);
}
if (chatView is GroupChatView) {
indicator.SetProperty("icon", GroupChatIconBase64);
var nick = GetNick(msg);
if (nick == null) {
indicator.SetProperty("sender", chatView.Name);
} else {
indicator.SetProperty("sender",
String.Format(
"{0} ({1})",
chatView.Name, nick
)
);
}
}
indicator.SetProperty(
"time",
msg.TimeStamp.ToLocalTime().ToString("s")
);
indicator.SetPropertyBool("draw-attention", true);
indicator.UserDisplay += delegate {
try {
MainWindow.PresentWithServerTime();
MainWindow.Notebook.CurrentChatView = chatView;
DisposeIndicator(chatView);
} catch (Exception ex) {
#if LOG4NET
Logger.Error("OnChatViewMessageHighlighted() " +
"indicator.UserDisplay threw exception", ex);
#endif
}
};
try {
indicator.Show();
} catch (Exception ex) {
#if LOG4NET
Logger.Error("OnChatViewMessageHighlighted() " +
"indicator.Show() thew exception", ex);
#endif
}
Indicators.Add(chatView, indicator);
}