コード例 #1
0
 public HideSideViewMessage(WindowExpansion expansionMode, SideViewAllocation allocation, double sideViewWidth)
 {
     this.Allocation = allocation;
     this.ExpansionMode = expansionMode;
     this.SideViewWidth = sideViewWidth;
 }
コード例 #2
0
 public ShowSideViewMessage(SideViewAllocation expect, Action<SideViewAllocation, WindowExpansion> resultCallback, double sideViewWidth)
 {
     this.ExpectedAlloc = expect;
     this.SideViewWidth = sideViewWidth;
     this.ResultCallback = resultCallback;
 }