當前位置: 首頁>>代碼示例>>C#>>正文


C# Stroke.tag方法代碼示例

本文整理匯總了C#中System.Windows.Ink.Stroke.tag方法的典型用法代碼示例。如果您正苦於以下問題:C# Stroke.tag方法的具體用法?C# Stroke.tag怎麽用?C# Stroke.tag使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Windows.Ink.Stroke的用法示例。


在下文中一共展示了Stroke.tag方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: PrivateAwareStroke

        public PrivateAwareStroke(Stroke stroke, string target) : base(stroke.StylusPoints, stroke.DrawingAttributes)
        {
            var cs = new[] {55, 0, 0, 0}.Select(i => (byte) i).ToList();
            pen = new Pen(new SolidColorBrush(
                new Color{
                       A=cs[0],
                       R=stroke.DrawingAttributes.Color.R,
                       G=stroke.DrawingAttributes.Color.G,
                       B=stroke.DrawingAttributes.Color.B
                    }), stroke.DrawingAttributes.Width * 4);
            this.stroke = stroke;
            this.target = target; 
            this.tag(stroke.tag());
            isPrivate = this.tag().privacy == "private";
            shouldShowPrivacy = (this.tag().author == Globals.conversationDetails.Author || Globals.conversationDetails.Permissions.studentCanPublish);
            
            if (!isPrivate) return;

            pen.Freeze();
        }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:20,代碼來源:HandWriting.cs

示例2: doMyStrokeRemoved

 private void doMyStrokeRemoved(Stroke stroke)
 {
     ClearAdorners();
     doMyStrokeRemovedExceptHistory(stroke);
     UndoHistory.Queue(
         () =>
         {
             if (Strokes.Where(s => s.sum().checksum == stroke.sum().checksum).Count() == 0)
             {
                 Strokes.Add(stroke);
                 doMyStrokeAddedExceptHistory(stroke, stroke.tag().privacy);
             }
         },
         () =>
         {
             if (Strokes.Where(s => s.sum().checksum == stroke.sum().checksum).Count() > 0)
             {
                 Strokes.Remove(Strokes.Where(s=> s.sum().checksum == stroke.sum().checksum).First());
                 strokes.Remove(stroke.sum());
                 doMyStrokeRemovedExceptHistory(stroke);
             }
         });
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:23,代碼來源:HandWriting.cs

示例3: doMyStrokeRemovedExceptHistory

 private void doMyStrokeRemovedExceptHistory(Stroke stroke)
 {
     var sum = stroke.sum().checksum.ToString();
     Commands.SendDirtyStroke.Execute(new MeTLLib.DataTypes.TargettedDirtyElement(currentSlide, stroke.tag().author,target,stroke.tag().privacy,sum));
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:5,代碼來源:HandWriting.cs

示例4: doMyStrokeAddedExceptHistory

 private void doMyStrokeAddedExceptHistory(Stroke stroke, string thisPrivacy)
 {
     if (!strokes.Contains(stroke.sum()))
         strokes.Add(stroke.sum());
     stroke.tag(new StrokeTag { author = stroke.tag().author, privacy = thisPrivacy, isHighlighter = stroke.DrawingAttributes.IsHighlighter });
     SendTargettedStroke(stroke, thisPrivacy);
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:7,代碼來源:HandWriting.cs

示例5: SendTargettedStroke

 public void SendTargettedStroke(Stroke stroke, string thisPrivacy)
 {
     if (!stroke.shouldPersist()) return;
     var privateRoom = string.Format("{0}{1}", currentSlide, stroke.tag().author);
     if(thisPrivacy.ToLower() == "private" && Globals.isAuthor && Globals.me != stroke.tag().author)
         Commands.SneakInto.Execute(privateRoom);
     Commands.SendStroke.Execute(new TargettedStroke(currentSlide,stroke.tag().author,target,stroke.tag().privacy,stroke, stroke.tag().startingSum));
     if (thisPrivacy.ToLower() == "private" && Globals.isAuthor && Globals.me != stroke.tag().author)
         Commands.SneakOutOf.Execute(privateRoom);
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:10,代碼來源:HandWriting.cs

示例6: dirtiesThis

 private bool dirtiesThis(TargettedMoveDelta moveDelta, Stroke elem)
 {
     return moveDelta.inkIds.Any(i => elem.tag().id == i && elem.tag().privacy == moveDelta.privacy && elem.tag().timestamp < moveDelta.timestamp);
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:4,代碼來源:MoveDeltaProcessor.cs

示例7: SendTargettedStroke

 public void SendTargettedStroke(Stroke stroke, string thisPrivacy)
 {
     if (!stroke.shouldPersist()) return;
     Commands.ActualReportStrokeAttributes.ExecuteAsync(stroke.DrawingAttributes);
     Commands.SendStroke.Execute(new MeTLLib.DataTypes.TargettedStroke(Globals.location.currentSlide,Globals.me,target,stroke.tag().privacy,stroke, stroke.tag().startingSum));
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:6,代碼來源:MasterCanvas.cs

示例8: doMyStrokeAddedExceptHistory

 private void doMyStrokeAddedExceptHistory(Stroke stroke, string thisPrivacy)
 {
     stroke.tag(new MeTLLib.DataTypes.StrokeTag { author = Globals.me, privacy = thisPrivacy, isHighlighter = stroke.DrawingAttributes.IsHighlighter });
     SendTargettedStroke(stroke, thisPrivacy);
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:5,代碼來源:MasterCanvas.cs

示例9: doMyStrokeAdded

 public void doMyStrokeAdded(Stroke stroke, string intendedPrivacy)
 {
     doMyStrokeAddedExceptHistory(stroke, intendedPrivacy);
     UndoHistory.Queue(
         () =>
         {
             var existingStroke = Strokes.Where(s => s.sum().checksum == stroke.sum().checksum).FirstOrDefault();
             if (existingStroke != null)
                 doMyStrokeRemovedExceptHistory(existingStroke);
         },
         () =>
         {
             if (Strokes.Where(s => s.sum().checksum == stroke.sum().checksum).Count() == 0)
             {
                 Strokes.Add(stroke);
                 doMyStrokeAddedExceptHistory(stroke, stroke.tag().privacy);
             }
         });
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:19,代碼來源:MasterCanvas.cs

示例10: doMyStrokeRemovedExceptHistory

 private void doMyStrokeRemovedExceptHistory(Stroke stroke)
 {
     var sum = stroke.sum().checksum.ToString();
     var bounds = stroke.GetBounds();
     Commands.SendDirtyStroke.Execute(new MeTLLib.DataTypes.TargettedDirtyElement(Globals.location.currentSlide,Globals.me,target,stroke.tag().privacy,sum));
 }
開發者ID:StackableRegiments,項目名稱:metl2011,代碼行數:6,代碼來源:MasterCanvas.cs


注:本文中的System.Windows.Ink.Stroke.tag方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。