We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a UserControl:
<UserControl ...> ... <ListView.ItemTemplate> <DataTemplate DataType="e:Block"> <dirkster:EditBox DisplayText="{Binding Text, UpdateSourceTrigger=PropertyChanged}" IsEditableOnDoubleClick="False" MouseDoubleClick="EditBox_MouseDoubleClick" Text="{Binding Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" ToolTip="{Binding Converter={StaticResource MyToolTipConverter}}" ToolTipService.ShowOnDisabled="True" /> </DataTemplate> </ListView.ItemTemplate> ... </UserControl>
I can't press F2 and Enter to rename.
The text was updated successfully, but these errors were encountered:
<GridViewColumn.CellTemplate> <dirkster:EditBox Text="{Binding Path=Name, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" DisplayText="{Binding DisplayName, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" ToolTip="{Binding Path, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" Focusable="True" RenameCommand="{Binding Source={StaticResource DataContextProxy}, Path=Data.RenameCommand}" VerticalAlignment="Stretch" HorizontalAlignment="Left" IsReadOnly="{Binding IsReadOnly}" Entity="{Binding}" ToolTipService.ShowOnDisabled="True" InvalidInputCharacters="/:?<>|" InvalidInputCharactersErrorMessage="A name cannot contain any of the following characters: /:?<>|" InvalidInputCharactersErrorMessageTitle="Invalid Character Input" Margin="2,0"> </dirkster:EditBox > </GridViewColumn.CellTemplate>
Renaming via 2 clicks seems not to work in a WPF ListView
Sorry, something went wrong.
No branches or pull requests
I have a UserControl:
I can't press F2 and Enter to rename.
The text was updated successfully, but these errors were encountered: