Software Engineering Personal Daily 2016/6/30
Today I mainly studied C#WPF's canvas and overall conceived the implementation UI design of the new slot wall feature.
Canvas is a container control for positioning, and you can control whether the content in the canvas is displayed through the Visibility property. By using the canvas control, I can switch between different interfaces in a window to complete the conversion of the slot wall interface and the score query interface.
For example:
<canvas x:name="userregistercanvas" margin="5,5,580,400" visibility="Hidden">
With the above code, I created a new canvas named Userregistercanvas, with coordinates of 5, 5,580,400, not visible.
<canvas x:name="userlogincanvas" margin="5,5,580,400 " visibility="Visible">
Through this code I create a new canvas named Userlogincanvas, with coordinates of 5, 5,580,400, visible.
After that I can add different content in these two canvases, then the user presses the different button to modify the Visibility property, displays the different content in the same location, completes the slot wall interface and the performance query interface conversion.
Software Engineering Personal Daily 2016/6/30