프로젝트

일반

사용자정보

개정판 19d602e0

ID19d602e003d8c2bbb04f42d167fae4c10db19b52
상위 02a9f323
하위 520b8e45

백흠경이(가) 5달 전에 추가함

Fix: Undo/Redo 기능 개선

Change-Id: I788a6fe870ed5ee7096f3ee461227588cf758388

차이점 보기:

MarkupToPDF/Controls/Parsing/MarkupParse.cs
257 257

  
258 258
                            using (System.IO.MemoryStream stream = new System.IO.MemoryStream())
259 259
                            {
260
                                System.IO.StreamWriter writer = new System.IO.StreamWriter(stream);
261
                                xamlData = xamlData.Replace("#FFFF0000", DisplayColor);
262

  
263
                                if (STAMP_Contents?.Count > 0)
260
                                using (System.IO.StreamWriter writer = new System.IO.StreamWriter(stream))
264 261
                                {
265
                                    foreach (var Content in STAMP_Contents)
262
                                    xamlData = xamlData.Replace("#FFFF0000", DisplayColor);
263

  
264
                                    if (STAMP_Contents?.Count > 0)
266 265
                                    {
267
                                        xamlData = xamlData.Replace(Content.Key, System.Security.SecurityElement.Escape(Content.Value));
266
                                        foreach (var Content in STAMP_Contents)
267
                                        {
268
                                            xamlData = xamlData.Replace(Content.Key, System.Security.SecurityElement.Escape(Content.Value));
269
                                        }
268 270
                                    }
269
                                }
270 271

  
271
                                writer.Write(xamlData);
272
                                writer.Flush();
272
                                    await writer.WriteAsync(xamlData);
273
                                    await writer.FlushAsync();
274
                                }
273 275
                                stream.Position = 0;
274 276

  
275 277
                                object obj = XamlReader.Load(stream);

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)