The layout tag has no wiki summary.
4
votes
1answer
259 views
Is nesting grids a good idea?
I find myself nesting a lot of grids inside grids in WPF.
I just found myself 3 Grids deep, and stopped to think: "Should I be doing this?"
Is there some kind of performance cost?
Is it ...
3
votes
3answers
349 views
How to make this code more readable
This is a page that allow user to do register:
<?php echo form_open('user/valid_register_page', 'autocomplete="off"');?>
<?php ...
2
votes
1answer
89 views
Java Swing Panel layout
I am working on a Java project for college that involves us setting up a TCP Server and Client. I have that part working and now to add more of a feel to my project I want to add a GUI.
We have not ...
2
votes
1answer
93 views
HTML - single page layout - absolute positioning
I am doing web apps, mostly single page apps. So i have to give absolute and fixed positioning a lot via css.
For Example, consider this page layout:
<html>
<div class="app-header">
...
2
votes
1answer
658 views
wxPython Form Builder - Sizer Automation
Presented for critique are a pair of classes which automate Sizer Creation and Layout in wxPython.
import wx
from wx.lib.combotreebox import ComboTreeBox
from wx.lib.agw.floatspin import FloatSpin
...